{% load i18n %} {% load thumbnail %}
{% for item in items %}
{% if item.template.image %} {% thumbnail item.template.image "530x400" as thumb %} {{ item.template.display_key }} {% endthumbnail %} {% else %}
TODO NO IMAGE
{% endif %}
{{ item.template.display_key }}
{% if item.template.description %}
{{ item.template.description|linebreaksbr }}
{% endif %} {% if item.allowed == "partial" %}
{% trans "Some modules are not available here" %}
{% endif %}
{% if item.allowed %} {% include "xprez/shared/icons/paste.html" %} {% trans "Insert" %} {% if item.symlink_allowed %} {% include "xprez/shared/icons/link.html" %} {% trans "Link" %} {% endif %} {% else %} {% trans "Cannot paste here" %} {% endif %}
{% endfor %}

{% trans "No templates available" %}