diff --git a/lms/templates/status.html b/lms/templates/status.html
index bcd77c36..f4d39b63 100644
--- a/lms/templates/status.html
+++ b/lms/templates/status.html
@@ -10,6 +10,7 @@
{{ _('Exercises operations room') }}
# |
{{ _('Name') }} |
+ {{ _('Notebook') }} |
{{ _('Checked') }} |
{{ _('Solved') }} |
{{ _('Percentage') }} |
@@ -21,6 +22,9 @@ {{ _('Exercises operations room') }}
{{ exercise['id'] }} |
{{ exercise['name'] | e }} |
+ {%- if exercise['notebook'] %}
+ {{ exercise['notebook'] }} |
+ {%- endif %}
{{ exercise['checked'] }} |
{{ exercise['submitted'] }} |
{{ (exercise['checked'] * 100 / exercise['submitted']) | round(2, 'floor') }}% |
@@ -34,6 +38,9 @@ {{ _('Exercises operations room') }}
{{ exercise['id'] }} |
{{ exercise['name'] | e }} |
+ {%- if exercise['notebook'] %}
+ {{ exercise['notebook'] }} |
+ {%- endif %}
{{ exercise['checked'] }} |
{{ exercise['submitted'] }} |
{{ (exercise['checked'] * 100 / exercise['submitted']) | round(2, 'floor') }}% |