{% extends "base.html" %} {% block title %}{{ 'Edit' if kt else 'Add' }} KT{% endblock %} {% block content %} {% macro kt_set(n, title, kind, payload, use, fac, removable) %}
KT {{ n }} {% if removable %}{% endif %}
{% if faculty %} {% else %}

No faculty added yet. Add a faculty first.

{% endif %}
{% endmacro %}

{{ 'Edit' if kt else 'Add' }} KT

{% if kt %} {{ kt.college }} {% elif colleges %} {% else %}

No colleges yet. Add a college first.

{% endif %}
{% for it in items %}{{ kt_set(loop.index, it.title, it.kind, it.payload, it.use, it.fac, (not kt) and loop.index > 1) }}{% endfor %}
{% if not kt %}{% endif %} Cancel
{% endblock %}