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