mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:19:05 +08:00
34 lines
862 B
Handlebars
34 lines
862 B
Handlebars
{{#if model}}
|
|
<table class='api-keys'>
|
|
<tr>
|
|
<th>{{i18n admin.api.key}}</th>
|
|
<th>{{i18n admin.api.user}}</th>
|
|
<th> </th>
|
|
</tr>
|
|
{{#each model}}
|
|
<tr>
|
|
<td class='key'>{{key}}</td>
|
|
<td>
|
|
{{#if user}}
|
|
{{#link-to 'adminUser' user}}
|
|
{{avatar user imageSize="small"}}
|
|
{{/link-to}}
|
|
{{else}}
|
|
{{i18n admin.api.all_users}}
|
|
{{/if}}
|
|
</td>
|
|
<td>
|
|
<button class='btn' {{action regenerateKey this}}>{{i18n admin.api.regenerate}}</button>
|
|
<button class='btn' {{action revokeKey this}}>{{i18n admin.api.revoke}}</button>
|
|
</td>
|
|
</tr>
|
|
{{/each}}
|
|
</table>
|
|
{{else}}
|
|
<p>{{i18n admin.api.none}}</p>
|
|
{{/if}}
|
|
|
|
{{#unless hasMasterKey}}
|
|
<button class='btn' {{action generateMasterKey}}>{{i18n admin.api.generate_master}}</button>
|
|
{{/unless }}
|