Blame view

paginer/templates/paginated_list_rows.html 646 Bytes
janek37 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% load i18n pagination_tags get %}

{% if page_nr %}
  {% autopaginate id page_nr ajax %}
{% else %}
  {% autopaginate id %}
{% endif %}

{% with paginer|get:id as paginer_obj %}
  {% paginate id %}
  {% for row in paginer_obj.list %}
    {% include paginer_obj.template %}
  {% endfor %}
  {% if not paginer_obj.list %}
    {% trans "Brak pozycji do wyświetlenia" %}
  {% else %}
    {% for action in paginer_obj.group_actions %}
janek37 authored
18
      <button id="{{ id }}-{{ action }}" class="group-action {{ action }}">
janek37 authored
19
20
21
22
23
24
        {{ paginer_obj.group_action_names|get:action }}
      </button>
    {% endfor %}
  {% endif %}
  {% paginate id %}
{% endwith %}