{% extends 'staff_semester_base.html' %} {% load static %} {% load evaluation_filters %} {% block content %} {{ block.super }}
| {% trans 'Degree' %} | {% trans 'Evaluation period' %} | {% trans 'Finished evaluations' %} | {% trans 'Reviewed text answers' %} | {% trans 'Participation' %} |
|---|---|---|---|---|
| {% if degree == 'total' %}{% trans 'Total' %}{% else %}{{ degree }}{% endif %} | {% if stats.num_evaluations != 0 %} {{ stats.first_start }} – {{ stats.last_end }} {% endif %} | {% include 'progress_bar.html' with done=stats.num_evaluations_evaluated total=stats.num_evaluations %} | {% include 'progress_bar.html' with done=stats.num_textanswers_reviewed total=stats.num_textanswers %} | {% include 'progress_bar.html' with done=stats.num_votes total=stats.num_enrollments_in_evaluation %} |
| {% trans 'There are no courses in this semester.' %} |