10 lines
159 B
Handlebars
10 lines
159 B
Handlebars
{{#if users}}
|
|
<ul>
|
|
{{#each users as |user|}}
|
|
{{yield user}}
|
|
{{/each}}
|
|
</ul>
|
|
{{else}}
|
|
<p>{{i18n (concat "user.summary." none)}}</p>
|
|
{{/if}}
|