{% endif %}
{% endwith %}
- {% if validated %}
-
+
+ {% if seminar_progress == 100 %}
{% with seminar.docs_correct as docs %}
{% if docs.all.count > 1 %}
{% with _("Step 5 : read these corrected documents") as title %}
{% include "teleforma/inc/evaluation_form.html" %}
{% endwith %}
{% endwith %}
+ {% endif %}
+ {% if validated %}
{% with _("Step 7 : download your testimonial") as title %}
{% include "teleforma/inc/testimonial_list.html" %}
{% endwith %}
-
{% endif %}
{% endblock course_content %}
questions = Question.objects.filter(seminar=seminar, status=3)
for question in questions:
total += question.weight
- answer = Answer.objects.filter(question=question, status=3, user=user, validated=True)
+ answer = Answer.objects.filter(question=question, status=3, user=user)
if answer:
progress += question.weight