feed 363 B

1234567891011121314
  1. # -*- coding: utf-8 -*-
  2. # key: feed
  3. # name : feed
  4. # contributor : MyFreeWeb
  5. # --
  6. class ${1:MyFeed}(Feed):
  7. title = u"${2: My Feed}"
  8. link = "${3:/feeds/rss}"
  9. description = u"${4:This is a feed}"
  10. author_name = "${5:Vasily Pupkin}"
  11. author_email = "${6:me@example.com}"
  12. def items(self):
  13. return ${7:MyModel}.objects.order_by('-id')