{% load i18n l10n datashow_tags humanize %}
{{ column.label }} {% if column.sortable %} {% spaceless %} {% sort_queryparam column.name ascending=True as asc_sort %} {% if asc_sort %} {% translate "sort ascending" %} {% else %} {% translate "remove sort ascending" %} {% endif %} {% sort_queryparam column.name ascending=False as desc_sort %} {% if desc_sort %} {% translate "sort descending" %} {% else %} {% translate "remove sort descending" %} {% endif %} {% endspaceless %} {% endif %} | {% endfor %}
---|
{{ rendered }} | {% endfor %}
{% if filter_form.is_filtered %} {% blocktrans with total_count=table.row_count|intcomma count=paginator.count|intcomma %} Showing {{ count }} of {{ total_count }} rows. {% endblocktrans %} {% else %} {% blocktrans with total_count=table.row_count|intcomma %} Total of {{ total_count }} rows. {% endblocktrans %} {% endif %}