{% load i18n %} {% load custom_tags %} {% load wikitags %} {% if manager.tgannSize %}

{% trans "Tags" %}: {% for tag in manager.tag_annotations %} {{ tag.textValue }}, {% endfor %}

{% endif %} {% if manager.txannSize %}

{% trans "Comments" %}:

{% for tann in manager.text_annotations %} {% if tann.isOwned %}
{{ tann.getOwner.getFullName }} {% trans "posted comment at" %} {{ tann.creationEventDate|date:"Y-m-d H:i:s" }}
{{ tann.textValue|wikify|safe|linebreaks }}
{{ tann.getOwner.getFullName }}

{% else %}
{{ tann.getOwner.getFullName }}
{{ tann.getOwner.getFullName }} {% trans "posted comment at" %} {{ tann.creationEventDate|date:"Y-m-d H:i:s" }}
{{ tann.textValue|wikify|safe|linebreaks }}

{% endif %} {% endfor %} {% endif %} {% if manager.urlannSize %}

{% trans "URLs" %}:

{% for urlann in manager.url_annotations %} {{ urlann.textValue|wikify|safe }} ; {% endfor %}

{% endif %} {% if manager.fileannSize %}

{% trans "Files" %}:

    {% for fileann in manager.file_annotations %}
  1. {{ fileann.getFileName|shortening:40 }} - {{ fileann.getFileSize|default_if_none:0|filesizeformat }} {% trans "by" %} {{ fileann.getOwner.getFullName }} {% trans "at" %} {{ fileann.creationEventDate|date:"Y-m-d H:i:s" }}
  2. {% endfor %}
{% endif %}