{% extends "sphene/sphwiki/base.html" %} {% load i18n %} {% load sph_extras %} {% load sph_pagination %} {% block content %} {% include "sphene/sphwiki/_snip_header.html" %} {% trans "Back to Snip" %} - {% trans "Create New Attachment" %}

{% for attachment in object_list %} {% endfor %}
{% trans "Id" %} {% trans "Action" %} {% trans "Attachment" %} {% trans "Upload Date" %} {% trans "Uploader" %}
{{ attachment.id }} {% trans 'Delete'%} {{ attachment.fileupload.name|sph_basename }} {{ attachment.uploaded|sph_date }} {% sph_html_user attachment.uploader %}
{% if is_paginated %} {% blocktrans with hits as attachment_count %}{{ attachment_count }} Attachments.{% endblocktrans %} {% sph_pagination pages page %} {% else %} {% blocktrans with object_list.count as attachment_count %}{{ attachment_count }} Attachments.{% endblocktrans %} {% endif %} {% endblock %}