Files
Reskreen/studenteval/templates/studenteval/cl_student_eval_list.html
Ambulance Clerc e099b9e8da bientôt a alpha
2023-09-09 19:20:08 +02:00

19 lines
592 B
HTML

{% extends 'studenteval/base_studenteval.html' %}
{% block title %}Liste des évaluations{% endblock %}
{% block cl_content %}
<div class="row">
<div class="col">
{% if object_list %}
{% for obj in object_list reversed %}
{% include 'studenteval/cl_student_eval.html' with object=obj %}
{% if not forloop.last %}
<hr>{% endif %}
{% endfor %}
{% else %}
<p>There is no post.</p>
{% endif %}
</div>
</div>
{% endblock %}