{% extends "django_tables2/table.html" %} {% load docbow %} {% load i18n %} {% load humanize %} {% block table.tbody.row %} {% for column, cell in row.items %} {{ cell }} {% if column.name == 'filetype' and row.record.comment %}

{{ row.record.comment }}

{% endif %} {% endfor %} {% block replies %} {% for reply in row.record.document.replies.all %} {% blocktrans with sender=reply|doc_real_sender date=reply.date|naturalday:"SHORT_DATE_FORMAT" time=reply.date|time:"H:i" %}Reply sent by {{ sender }} on {{ date }} at {{ time }}{% endblocktrans %} {% endfor %} {% endblock %} {% endblock %} {% block pagination %} {% with num_page=table.page.number total_page=table.paginator.num_pages num_doc=table.page.object_list.data.count total_doc=table.paginator.count%} {% endwith %} {% endblock pagination %}