I'd like to display all available feeds on one page, but I don't want to hard code each feed. Something like sending in a queryset of feeds would be perfect, like:
{% for feed in feeds %} {{ feed.link }} {{ feed.name }} {{ feed.description }} {% endfor %}
From what I understand, Feeds in the Django Syndication Framework are created as individual classes that inherit from class (feed). This means I can't create a queryset for all feeds, only for individual feeds.
How can I send in a queryset of feeds, if they are each a different class? Is this only possible by way of crafting a queryset from a class that references each feed using generic foreignkey relations? Or can I actually send in a queryset of the parent [feed] class?
Bonus question: is there a simple way to aggregate a "full-feed" from all individual feeds?
Many thanks!