{% extends "simple.html" %} {% load i18n %} {% block main %}

{% trans "All published images" %}

{% if object_list %}
{% for file in object_list %}

{{ file.filename }}

{{ file.user }} {{ file.submit_date }}
{% for tag in file.tags.all %}{{ tag }}{% endfor %}
{% endfor %}
{% else %}

{% trans "No files matching your criteria" %} {% endif %} {% endblock %} {% block context_menu %}

  • Upload
  • {% endblock %} {% block footer_js %} $$('.image').each(function (image) { image.addEvent('click', function (event) { parent.document.id("prompt-address").set('value', image.get('href')); parent.document.id("prompt-description").set('value', image.get('title')); parent.document.id("button-ok").click(); }); }); {% endblock %}