{% extends "exams/base.html" %} {% load static %} {% block content %}

Joint Exam Projects

Manage and monitor all examination projects

{% if user.is_superuser or user.profile.role == "super" %} Add New Project {% endif %}
{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}
{% for project in projects %} {% empty %} {% endfor %}
📌 Project Name 🎓 Ac. Level 📅 Year ⚡ Status ⚙️ Actions
{{ project.name }} {{ project.academic_level.name }} {{ project.year }}
Edit Marks Capture Dashboard/Progress Score-Update {% if user.is_superuser or user.profile.role == "super" %} Manage {% endif %}
No projects found. Click "Add New Project" to get started.
{% endblock %}