{% extends "misago/admin/generic/list.html" %} {% load i18n %} {% block page-actions %}
{% trans "New type" context "admin attachments types" %}
{% endblock %} {% block table-header %} {% trans "Type" context "admin attachments types list" %}   {% trans "Extensions" context "admin attachments types list" %} {% trans "Mimetypes" context "admin attachments types list" %} {% trans "Files" context "admin attachments types list" %}   {% endblock table-header %} {% block table-row %} {{ item }} {% if item.is_locked %} {% trans "Limited" context "admin attachments type uploads disabled" %} {% elif not item.is_enabled %} {% trans "Disabled" context "admin attachments type disabled" %} {% endif %} {% if item.mimetypes %} {% else %} {% trans "Not set" context "admin attachments type mimetypes not set" %} {% endif %} {{ item.num_files }} {% endblock %} {% block blankslate %} {% trans "No attachment types are set." context "admin attachments types" %} {% endblock blankslate %} {% block javascripts %} {% endblock %}