067536362b6b8eb369cb5be9763d0a4e32022f22
[prawokultury.git] / migdal / templates / migdal / entry / entry_list.html
1 {% extends "base.html" %}
2 {% load url from future %}
3 {% load i18n %}
4 {% load migdal_tags %}
5
6
7 {% block "main_menu" %}
8     {% if category %}
9         {% main_menu 'object' category %}
10     {% elif entry_type %}
11         {% main_menu 'entry_type' entry_type.db %}
12     {% else %}
13         {{ block.super }}
14     {% endif %}
15 {% endblock "main_menu" %}
16
17
18 {% block "body" %}
19
20 <h1>
21 {% if category %}
22     {% trans "Category" %}: {{ category }}
23     <a href="{% url 'migdal_category_feed' category.slug %}">RSS</a>
24 {% elif entry_type %}
25     {{ entry_type|capfirst }}
26     <a href="{% url 'migdal_entry_list_'|add:entry_type.db|add:'_feed' %}">RSS</a>
27 {% else %}
28     {% trans "Latest news" %}
29 {% endif %}
30 </h1>
31
32 {% if submit %}
33     <a href="{% url 'migdal_submit' %}">{% trans "Submit a new story." %}</a>
34 {% endif %}
35
36 {% for object in object_list %}
37     {% entry_short object %}
38 {% endfor %}
39
40 {% endblock %}