Add RDFa data to our library pages.
[htsworkflow.git] / htsworkflow / frontend / templates / admin / pagination.html
1 <!--overrride pagination-->
2 {% load admin_list %}
3 {% load i18n %}
4 <p class="paginator">
5 {% if pagination_required %}
6 {% for i in page_range %}
7     {% paginator_number cl i %}
8 {% endfor %}
9 {% endif %}
10 {{ cl.result_count }} {% ifequal cl.result_count 1 %}{{ cl.opts.verbose_name }}{% else %}{{ cl.opts.verbose_name_plural }}{% endifequal %}
11 {% if show_all_url %}&#160;&#160;<a href="{{ show_all_url }}" class="showall">{% trans 'Show all' %}</a>{% endif %}
12 {% if cl.formset and cl.result_count %}<input type="submit" name="_save" class="default" value="{% trans 'Save' %}"/>{% endif %}
13 </p>