eede69943ea44be09247c0f6009358a745f0a3d5
[prawokultury.git] / migdal / templates / migdal / entry / entry_list.html
1 {% extends "base.html" %}
2 {% load url from future %}
3 {% load i18n %}
4 {% load pagination_tags prevnext %}
5 {% load migdal_tags %}
6
7
8 {% block "main_menu" %}
9     {% if category %}
10         {% main_menu 'object' category %}
11     {% elif entry_type %}
12         {% main_menu 'entry_type' entry_type.db %}
13     {% else %}
14         {{ block.super }}
15     {% endif %}
16 {% endblock "main_menu" %}
17
18
19 {% block "body" %}
20
21 {% if category %}
22     <h1>{% trans "Category" %}: {{ category }}
23     <!--a href="{% url 'migdal_category_feed' category.slug %}">RSS</a-->
24     </h1>
25 {% elif entry_type %}
26     <h1>{{ entry_type|capfirst }}
27     <!--a href="{% url 'migdal_entry_list_'|add:entry_type.db|add:'_feed' %}">RSS</a-->
28     </h1>
29 {% endif %}
30
31 {% if object_list.promobox and request.page == 1 %}
32 <div id="promobox">
33 <ul id="promobox-switcher">
34 {% for object in object_list.promobox %}
35     <li {% if forloop.counter == 1 %} class="active"{% endif %}>
36         <a href="{{ object.get_absolute_url }}"
37         >{{ forloop.counter }}</a>
38     </li>
39 {% endfor %}
40 </ul>
41
42 <div id="promobox-wrapper">
43 <ul class="promobox">
44 {% for object in object_list.promobox %}
45     {% entry_promobox object forloop.counter %}
46 {% endfor %}
47 </ul>
48 </div>
49
50 </div>
51 {% endif %}
52
53 {% if submit %}
54     <p class="submit-link">
55     <a href="{% url 'migdal_submit' %}">{% trans "Submit a new story, create Culture's Right with us!" %}</a>
56     </p>
57 {% endif %}
58
59
60 {% autopaginate object_list 10 %}
61 {% for object in object_list %}
62     {% entry_short object %}
63 {% endfor %}
64 {% prevnext %}
65
66 {% endblock %}