73e5006d42a8db469987b4bf77c3940abdf0be0d
[redakcja.git] / apps / filebrowser / templates / filebrowser / include / .svn / text-base / paginator.html.svn-base
1 {% load i18n %}
2 {% if not results_var.results_current %}
3 <p class="paginator" style="background: #fff !important; border-bottom: 1px solid #ddd !important;">
4 <span class="error"><strong>{% trans "No Items Found." %}</strong></span>
5 </p>
6 {% endif %}
7 <p class="paginator">
8 {% if results_var.results_total %}
9     <strong>{% blocktrans count results_var.results_total as counter %}{{ counter }} Item{% plural %}{{ counter }} Items{% endblocktrans %}</strong>&nbsp;
10     {% for count in counter.items %}
11         {% trans count.0 %}:
12         <strong>{{ count.1 }}</strong>&nbsp;
13     {% endfor %}
14 {% else %}
15     <strong>{% trans "No Items." %}</strong>
16 {% endif %}
17 </p>