{% extends 'base.html' %} {% load i18n staticfiles thumbnail %} {% block head_title %}{% trans "My Documents" %}{% endblock %} {% block styles %} {{ block.super }} {% endblock %} {% block nav-doc-list-class %}active{% endblock %} {% block body %}
{% trans 'Create new' %}

{% trans "My Documents" %}

{% for document in object_list %} {% comment %} {% endcomment %} {% endfor %}
{% with part=document.parts.first %} {% if part %} {% endif %} {% endwith %} {# {{ document.name }} #} {{ document.name }} {% if document.typology %}
{{ document.typology|default_if_none:'-' }}{% endif %}
{{document.owner}} {% with groups=document.shared_with_groups.all %} {% if groups %}
{{ groups|join:', ' }}{% endif %} {% endwith %}
{{ document.parts_updated_at|date }} {% blocktrans with count=document.parts.count %}{{ count }} image(s).{% endblocktrans %} {% if document.workflow_state %}{% else %}{% endif %} {# #}
{% include 'includes/pagination.html' %} {% endblock %}