{% extends "django_tables2/table.html" %} {% load docbow %} {% load i18n %} {% load humanize %} {% load url from future %} {% 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.cardinality %} {% comment %} Block of action buttons Behaviour is in static/js/actions.js {% endcomment %}
  • {% if total != count %}{{ count }} de {{ total }}{% else %}{{ total }}{% endif %} {% if total == 1 %}document{% else %}documents{% endif %} / Export CSV / Export ODS
  • {% endblock %}