mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-01 22:59:28 +00:00
21 lines
492 B
Handlebars
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>
|