root/djangoproject.com/django_website/apps/aggregator/feeds.py
| Revision 3008, 375 bytes (checked in by adrian, 2 years ago) |
|---|
| Line | |
|---|---|
| 1 | from django.contrib.syndication.feeds import Feed |
| 2 | from django_website.apps.aggregator.models import FeedItem |
| 3 | |
| 4 | class CommunityAggregatorFeed(Feed): |
| 5 | title = "The Django community aggregator" |
| 6 | link = "http://www.djangoproject.com/community/" |
| 7 | description = "Aggregated feeds from the Django community." |
| 8 | |
| 9 | def items(self): |
| 10 | return FeedItem.objects.all()[:10] |
Note: See TracBrowser for help on using the browser.
