index.html
476 Bytes
{% extends 'feedzilla/base.html' %}
{% load i18n %}
{% block feedzilla_content %}
{% for post in page.object_list %}
{% include 'feedzilla/_post_template.html' %}
<hr>
{% empty %}
<h2>{% trans 'There is no RSS registered' %}</h2>
<h3>
{% trans 'Please' %}
<a href="{% url "feedzilla_submit_blog" %}">{% trans 'click here' %}</a>
{% trans 'to submit a blog' %}</h3>
</h3>
{% endfor %}
{% include "common/pagination.html" %}
{% endblock %}