{% 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 %}
{% with part=document.parts.first %}
{% if part %}
|
{# {{ 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 %} | {% comment %}{% if document.workflow_state %}✓{% else %}✗{% endif %} | {% endcomment %}{# #} |
---|