From 61a74986829aa26dacfdd5cb8490e31398b34575 Mon Sep 17 00:00:00 2001 From: matt Date: Mon, 18 Apr 2022 15:52:35 +0000 Subject: [PATCH] Added testResults page --- views/testResults.hbs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 views/testResults.hbs diff --git a/views/testResults.hbs b/views/testResults.hbs new file mode 100644 index 0000000..b4fda05 --- /dev/null +++ b/views/testResults.hbs @@ -0,0 +1,20 @@ +
+
+
+

Test Results - {{ testName }}

+
+ {{#if testResults.length}} + {{#each testResults}} + {{> testResult result=this userType=../userType edit=true linkRoot=../linkRoot}} + {{/each}} + {{else}} + {{#eq userType 'account'}} + You have not submitted any results yet + {{else}} + Your test result has not been submitted yet + {{/eq}} + {{/if}} +
+
+
+