{% extends 'staff_semester_base.html' %}
{% load static %}
{% load evaluation_filters %}
{% block content %}
{{ block.super }}
{{ semester.name }}
{% translate 'Program' %} | {% translate 'Evaluation period' %} | {% translate 'Finished evaluations' %} | {% translate 'Reviewed text answers' %} | {% translate 'Participation' %} |
---|---|---|---|---|
{% if program == 'total' %}{% translate 'Total' %}{% else %}{{ program }}{% 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 %} |
{% translate 'There are no courses in this semester.' %} |