-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Support for Grouping Subscribes together (with subgroups) would be cool.
A simple model like this should do:
class Group:
parentgroup=models.ForeignKey(Group,blank=True,null=True)
class Subscriber:
group=models.ForeignKey(Group, blank=True, null=True)
and a url /group/groupname for getting group-feed-entries
Original issue reported on code.google.com by [email protected] on 1 Feb 2010 at 10:10