{% extends "events/base.html" %} {% load bootstrap_pagination_tags %} {% block title %}{% trans 'Event Files Search' %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% trans 'Event Files' %}

{% trans "Back to Events" %}
{% include "events/files/search-form.html" %} {% autopaginate event_files 10 %}
{{ paginator.count }} {% trans 'File' %}{{ paginator.count|pluralize }} {% trans "Found" %}
{% for event_file in event_files %} {% include "events/files/search-result.html" %} {% endfor %}
{% paginate %}
{% endblock %} {% block extra_body %} {{ block.super }} {% include 'events/include/event_file_js.html' %} {% endblock %}