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

Joint Exam Managements System

{% 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 }}
{% if user.is_superuser or user.profile.role == "super" %} Edit Manage Progress {% endif %} {% if user.profile.role == "super_master" %} {% endif %} {% if user.is_superuser or user.profile.role == "school" %} View-Results {% endif %} {% if project.upload == True and user.profile.role == "school" %} Upload Results {% endif %}
No projects found. Click "Add New Project" to get started.
{% endblock %}