bientôt a alpha
This commit is contained in:
19
studenteval/templates/studenteval/cl_student_eval_list.html
Normal file
19
studenteval/templates/studenteval/cl_student_eval_list.html
Normal file
@@ -0,0 +1,19 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user