{% extends "base.html" %} {% from "_ui.html" import page_head, empty %} {% block title %}Add College{% endblock %} {% block content %} {{ page_head('cap', 'Add College', 'Create the colleges that KT is attached to.') }}

{{ icon('plus') }} New college

{{ icon('cap') }}

{{ icon('list') }} Existing colleges

{{ rows|length }} total
{% for c in rows %} {% else %} {% endfor %}
S.NoCollege NameAdded ByAction
{{ loop.index }} {{ icon('cap') }}{{ c.name }} {% if c.added_by %}{{ icon('user') }}{{ c.added_by }}{% else %}-{% endif %} {{ icon('file-plus') }} Add KT {{ icon('edit') }}
{{ empty('inbox', 'No colleges yet.') }}
{% endblock %}