{% extends "base.html" %} {% load navigation_tags %} {% load authorization_tags %} {% block content %} {{ block.super }}

Note Type List

{% include "dojo/filter_snippet.html" with form=ntl.form %}
{% if nts %}
{% include "dojo/paging_snippet.html" with page=nts page_size=True %}
{% for nt in nts %} {% if "dojo.change_note_type"|has_configuration_permission:"superuser" %} {% endif %} {% endfor %}
{% dojo_sort request 'Note Type' 'name' 'asc' %} Description Single/Multiple Mandatory/Optional Active/Disabled
{{ nt.name }} {{ nt.description }} {% if nt.is_single %} Single {% else %} Multiple {% endif %} {% if nt.is_mandatory %} Mandatory {% else %} Optional {% endif %} {% if nt.is_active %} Active {% else %} Disabled {% endif %}
Edit Note Type {% if nt.is_active %} Disable Note Type {% else %} Enable Note Type {% endif %}
{% include "dojo/paging_snippet.html" with page=nts page_size=True %}
{% else %}

No Note types found.

{% endif %}
{% endblock %} {% block postscript %} {{ block.super }} {% include "dojo/filter_js_snippet.html" %} {% endblock %}