{% extends 'vice_president/base_vpr.html' %} {% load static %} {% load custom_tag %} {% load custom_tag_obj %} {% block content %} UFR: {{UFR.code}} | ANNEE: {{anUniv}} | NIVEAU: {{niveau}} MENU {% csrf_token %} {% for an in annees %} {{an}} {% endfor %} {% for niv in niveaux %} {{niv}} {% endfor %} LISTE DES UEs {% for semestre in semestres %} {{semestre.niveau}} : {{semestre}} Code libellé Délibérée {% for ue in UFR.id|get_ue_by_ufr_and_semestre:semestre.id %} {{ue.code}} {{ue.libelle}} {% if ue.id|check_deliberation_ue_an:anUniv == 'Oui' %} {% endif %} {% empty %} Aucune UE trouvé {% endfor %} {% endfor %} {% include 'other_admin/pagination.html' %} {% endblock content %} {% block custom_js %} {% endblock custom_js %}