1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 22:39:26 +00:00
Files
stratos/views/classUsers.hbs
2022-03-21 09:14:08 +00:00

17 lines
409 B
Handlebars

<section class='adminSection adminSection--buttons'>
{{#eq userType 'account'}}
<div class='classes__buttons'>
{{> button style='full' colour='primary' to=addLink content=addContent size='lg' }}
</div>
{{/eq}}
</section>
<section class='adminSection classUsers'>
<div class="adminItem">
<h2>{{pageTitle}}</h2>
{{#each users as |user|}}
{{> classUser user=user }}
{{/each}}
</div>
</section>