From f568b94c2a3d0827154c4a97dde502170e8df299 Mon Sep 17 00:00:00 2001
From: Ruth Mahalla Milano
 <97195051+RuthMahallaMilano@users.noreply.github.com>
Date: Sun, 3 Mar 2024 00:49:32 +0200
Subject: [PATCH] add notebook number to list of exercises to check
---
 lms/templates/status.html | 7 +++++++
 1 file changed, 7 insertions(+)
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') }}% |