{% extends "wiki/article.html" %} {% load wiki_tags i18n humanize %} {% block wiki_pagetitle %}{% trans "Add file to" %} "{{ article.current_revision.title }}"{% endblock %} {% block wiki_contents_tab %}

{% trans "Add attachment from other article" %}

{% if attachments %} {% for attachment in attachments %} {% endfor %}
{% trans "File" %} {% trans "Main article" %} {% trans "Date" %} {% trans "Uploaded by" %} {% trans "Size" %} {% trans "Action" %}

{{ attachment.original_filename }}

{{ attachment.current_revision.description|default:_("No description")|safe }}
{{ attachment.article.current_revision.title }} {{ attachment.current_revision.created }} {% if attachment.current_revision.deleted %}{% trans "deleted" %}{% endif %} {% include "wiki/includes/revision_info.html" with revision=attachment.current_revision hidedate=1 hidenumber=1 %} {{ attachment.current_revision.get_size|filesizeformat }}
{% csrf_token %} {% trans "Download" %}
{% else %}

{% trans "Your search did not return any results" %}

{% endif %} {% with query as appended_value and "query" as appended_key %} {% include "wiki/includes/pagination.html" %} {% endwith %}

{% trans "Go back" %}

{% endblock %}