{% extends "base.html" %} {% load crispy_forms_tags %} {% block title %}{{ action }} Course | Admin Portal{% endblock %} {% block nav_courses %}active{% endblock %} {% block content %}

{{ action }} Course

{% if action == 'Add' %}Add a new subject or unit to a program.{% else %}Update this course's details.{% endif %}

{% csrf_token %} {% crispy form %}
Tips: Use Code for short identifiers like EI-101. Year determines which year of the program this course belongs to. Inactive courses are hidden from students.
{% endblock %}