Bugfix
[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 titleextra %}{% if category %}{{ category.title }} :: {% elif entry_type %}{{ entry_type|capfirst }} :: {% endif %}{% endblock %}
8
9
10 {% block body %}
11
12 {% if category %}
13     <h1>{% trans "Category" %}: {{ category }}</h1>
14 {% elif entry_type %}
15     <h1>{{ entry_type|capfirst }}</h1>
16 {% endif %}
17
18 {% autopaginate object_list 10 as page %}
19
20 {% if object_list.promobox and page_obj.number == 1 %}
21 <div id="promobox">
22 <ul id="promobox-switcher">
23 {% for object in object_list.promobox %}
24     <li {% if forloop.counter == 1 %} class="active"{% endif %}>
25         <a href="{{ object.get_absolute_url }}"
26         >{{ forloop.counter }}</a>
27     </li>
28 {% endfor %}
29 </ul>
30
31 <div id="promobox-wrapper">
32 <ul class="promobox">
33 {% for object in object_list.promobox %}
34     {% entry_promobox object forloop.counter %}
35 {% endfor %}
36 </ul>
37 </div>
38
39 </div>
40 {% endif %}
41
42 {% if submit %}
43     <p class="submit-link">
44     <a href="{% url 'migdal_submit' %}">{% trans "Submit a new story, create Right to Culture with us!" %}</a>
45     </p>
46 {% endif %}
47
48 {% if not object_list %}
49    <p class="warning">{% trans "Work in progress." %}</p>
50 {% endif %}
51
52 {% for object in page %}
53     {% entry_short object %}
54 {% endfor %}
55 {% prevnext %}
56
57 {% endblock %}