fp/services/our/src/views/profile.hbs
2025-08-13 04:31:07 -08:00

38 lines
847 B
Handlebars

{{#> main}}
<header>
{{> navbar}}
</header>
<main class="container">
<section class="section">
<h2 class="title is-1">Profile</h2>
<div class="box">
<p><strong>Identicon:</strong> {{{identicon user.id 48}}}</p>
<p><strong>ID:</strong> <small>{{user.id}}</small></p>
<p><strong>Roles:</strong> {{#each user.roles}}{{this.name}}{{#unless @last}}, {{/unless}}{{/each}}
</p>
</div>
{{!-- <p><strong>Perks:</strong> @todo
@todo {{#each user.perks}}{{this.name}}{{#unless @last}}, {{/unless}}{{/each}}
</p> --}}
</section>
{{#if (hasRole "admin" user)}}
<section class="section">
<div class="box">
<h2 class="title is-3">Admin section</h2>
<a href="/admin">Admin page</a>
</div>
</section>
{{/if}}
<a href="/logout">Logout</a>
{{>footer}}
</main>
{{/main}}