{% load i18n cms_tags %}

{{ instance.category.name }}

{% if request.GET.search %}

{% trans "search results for" %} {{ request.GET.search }}

{% endif %} {% for publication in info_publications %}
{% render_model publication "title" %}
{% if publication.description %}

{{ publication.description }}

{% endif %}

Publicación: {{ publication.published_at }}

{% if publication.publish_end_at %}

Despublicación: {{ publication.publish_end_at }}

{% endif %} Ver Archivo
{% empty %}

{% trans "No files were found in the selected category" %}

{% endfor %} {% if paginator.num_pages > 1%} {% endif %} {% comment %} {{ instance.category }} {{ instance.pagination }} #Number of items per page {{ instance.target }} # info_publications list variables: {{ title }} {{ description }} {{ category }} {{ author }} {{ published_at }} {{ publish_end_at }} {{ icon_class }} # Class Icons FontAwesome File, PDF, Word, Excel, Power Point {{ file }} # pagination list variables: {{ info_publications.has_previous }} {{ info_publications.has_next }} {{ info_publications.previous_page_number }} {{ info_publications.next_page_number }} {{ info_publications.number }} {{ paginator.page_range }} {{ paginator.num_pages }} {% endcomment %}