{% load i18n %}
{% for item in clipboard %}
{% with icon=item.obj.admin_icon %} {% if icon %} {{ item.obj.admin_icon }} {% else %} {% include "xprez/shared/icons/clipboard_item.html" %} {% endif %} {% endwith %}
{{ item.obj.clipboard_verbose_name }}
{% if item.obj.preview_text %}{{ item.obj.preview_text }}{% endif %} {% if item.allowed == "partial" %}
{% trans "Some modules are not available here" %}
{% endif %}
{% if item.allowed %} {% include "xprez/shared/icons/paste.html" %} Paste {% if item.symlink_allowed %} {% include "xprez/shared/icons/link.html" %} {% trans "Link" %} {% endif %} {% else %} {% trans "cannot paste here" %} {% endif %} {% include "xprez/shared/icons/cross.html" %} {% trans "Remove" %}
{% endfor %}

{% trans "clipboard empty" %}