1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 20:39:28 +00:00
Files
stratos/views/partials/testTable.hbs

14 lines
177 B
Handlebars

{{#if tests.length}}
<table>
{{#each tests}}
{{> dashboardTest
id=id
name=template.name
date=date
}}
{{/each}}
</table>
{{else}}
No tests found
{{/if}}