{% extends "base.html" %} {% load url from future %} {% load i18n %} {% load migdal_tags %} {% block "main_menu" %} {% if category %} {% main_menu 'object' category %} {% elif entry_type %} {% main_menu 'entry_type' entry_type.db %} {% else %} {{ block.super }} {% endif %} {% endblock "main_menu" %} {% block "body" %}

{% if category %} {% trans "Category" %}: {{ category }} RSS {% elif entry_type %} {{ entry_type|capfirst }} RSS {% else %} {% trans "Latest news" %} {% endif %}

{% if submit %} {% trans "Submit a new story." %} {% endif %} {% for object in object_list %} {% entry_short object %} {% endfor %} {% endblock %}