From 36d840c752ff4633bd8a45360b169b06b53c2537 Mon Sep 17 00:00:00 2001 From: Vivek Santayana Date: Thu, 2 Feb 2023 22:16:29 +0000 Subject: [PATCH] Typo --- ref-test/app/admin/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ref-test/app/admin/views.py b/ref-test/app/admin/views.py index 965d216..16b89d7 100644 --- a/ref-test/app/admin/views.py +++ b/ref-test/app/admin/views.py @@ -309,7 +309,7 @@ def _tests(filter:str=None): if filter in [None, '', 'active']: tests = [ test for test in _tests if test.end_date >= now and test.start_date <= now ] display_title = 'Active Exams' - error_none = 'There are no exams that are currently active. You can create one using the Creat Exam form.' + error_none = 'There are no exams that are currently active. You can create one using the Create Exam form.' if filter == 'expired': tests = [ test for test in _tests if test.end_date < now ] display_title = 'Expired Exams'