1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 22:59:28 +00:00
Files
stratos/views/testResults.hbs
2022-04-18 15:52:35 +00:00

21 lines
492 B
Handlebars

<section>
<div class='adminSection'>
<div class='adminItem'>
<h2>Test Results - {{ testName }}</h2>
<div>
{{#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}}
</div>
</div>
</div>
</section>