{% extends "base.html" %} {% load i18n plmapp_tags %} {# template to display a pulished object #} {# disable search panel and toolbar #} {% block toolbar %} {% endblock %} {% block leftcolumn %} {% endblock %} {% block content %} {% if obj.published or is_readable %} {% if obj.files %}

{% trans "Files" %}

{% for df in obj.files %} {% endfor %}
{{df.filename}} {{df.size|filesizeformat}} {% trans "DOWNLOAD" %} {% if df.thumbnail %} Thumbnail {% else %} {% trans "No thumbnail available" %} {% endif %}
{% endif %}

{% trans "Attributes" %}

{% for description, attribute, richtext in object_attributes %} {% endfor %}
{{description|capfirst}} {% if attribute.year %} {{ attribute|date:"DATETIME_FORMAT" }} — {% blocktrans with attribute|timesince as time_since %}{{time_since}} ago{% endblocktrans %} {% elif richtext %}
{{ attribute|richtext_filter:obj }}
{% else %} {{attribute|linebreaks}} {% endif %}
{% if revisions|length > 1 %}

{% trans "Revisions" %}

{% for object in revisions %} {% endfor %}
{{object.reference}} {{object.revision}} {{object.type}} {{object.state.name}}
{% endif %} {% if attached %}

{% if obj.is_part %} {% trans "Attached documents" %} {% else %} {% trans "Attached parts" %} {% endif %}

{% for object in attached %} {% endfor %}
{{object.reference}} {{object.revision}} {{object.type}} {{object.name}}
{% endif %} {% else %}

{% if obj.is_part %} {% trans "This part is unpublished."%} {% else %} {% trans "This document is unpublished."%} {% endif %}

{% endif %} {% endblock %}