{% load i18n datashow_tags %}
{{ column.label|truncatechars:20 }} {% if column.sortable %} {% spaceless %} {% querystring "sort" column.name as asc_sort %} {% if asc_sort %}{% endif %} {% translate "sort ascending" %} {% if asc_sort %}{% endif %} {% querystring "sort" "-"|add:column.name as desc_sort %} {% if desc_sort %} {% endif %} {% translate "sort descending" %} {% if desc_sort %}{% endif %} {% endspaceless %} {% endif %} | {% endfor %}
---|
{{ rendered }} | {% endfor %}
{% if filter_form.is_filtered %} {% blocktrans with total_count=table.row_count count=paginator.count %} Showing {{ count }} of {{ total_count }} rows. {% endblocktrans %} {% else %} {% blocktrans with total_count=table.row_count %} Showing {{ total_count }} rows. {% endblocktrans %} {% endif %}