{% load i18n static %} {% load check_permissions %}

{% blocktranslate count counter=description|length trimmed %} Description {% plural %} Descriptions {% endblocktranslate %} {% if user|can_add_mlgr %}     {% translate 'Add' %} {% endif %}

{% for description in descriptions %}
#{{ forloop.counter }}
{{ description.description_html }}
{% if user|can_change:description %}     {% translate 'Edit' %} {% endif %} {% if user|can_delete:description %}     {% translate 'Remove' %} {% endif %}
{% if user|can_change:description %} {% endif %} {% if user|can_delete:description %} {% endif %}
{% endfor %}