19 lines
592 B
HTML
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 %} |