{% extends "base.html" %} {% load humanize %} {% block title %}Programs | Admin Portal{% endblock %} {% block nav_programs %}active{% endblock %} {% block content %} {% if programs %}
{% for program in programs %} {% endfor %}
Program Name Level Duration Tuition / Term Students Courses Status Actions
{{ program.name }} {% if program.entry_requirement %}
{{ program.entry_requirement }}
{% endif %}
{{ program.get_level_display }} {{ program.duration }} UGX {{ program.tuition_fee|intcomma }} {% if program.exam_fee %}
+ Exam: {{ program.exam_fee|intcomma }}
{% endif %}
{{ program.student_count }} {{ program.course_count }} {% if program.is_active %} Active {% else %} Inactive {% endif %}
{% csrf_token %}
{% else %}

No programs yet.

Add First Program
{% endif %} {% endblock %}