{% extends "admin.html" %} {% load url from future %} {% block headtitle %}Modalities - {% endblock %} {% block exam_applications_active %} active {% endblock %} {% block content %}
{% for category in modality_categories %}

{{ category }}

Edit Category Delete Category

{% if category.get_items %} {% for item in category.get_items %} {% endfor %}
Name Type Order Minimum Scans Maximum Scans
{{ item }} {{ item.get_type_display }} {{ item.order }} {% if item.minimum %}{{ item.minimum }}{% endif %} {% if item.maximum %}{{ item.maximum }}{% endif %}
{% endif %} {% endfor %}

Go Back

{% endblock %}