I am looking to extend the functionality of Django\'s group, so I can have extra properties on the Group such as a url for the Group\'s homepage. Something like this:
You have two option;
1) New model;
class GroupProfile(models.Model):
group = models.OneToOneField('auth.Group', unique=True)
url = models.CharField(max_length=100)
2) Monkey Patch;
Group.add_to_class('url', models.CharField(max_length=100))
In second option you have to use app like south
for db migration.