[Django]-Reading RSS feed and displaying it in Django Template | feedparser

8👍

If you add feeds to your template context, you should be able to loop through it in your template:

<ul>
{% for entry in feeds.entries %}
    <li><a href="{{entry.link}}">{{entry.title}}</a></li>

{% endfor %}
</ul>

Leave a comment