discourse/app/assets/javascripts/admin/templates/api.hbs

34 lines
967 B
Handlebars
Raw Normal View History

2013-10-22 15:53:08 -04:00
{{#if model}}
<table class='api-keys'>
<tr>
<th>{{i18n 'admin.api.key'}}</th>
<th>{{i18n 'admin.api.user'}}</th>
2013-10-22 15:53:08 -04:00
<th>&nbsp;</th>
</tr>
2014-12-12 13:28:20 -05:00
{{#each k in model}}
2013-10-22 15:53:08 -04:00
<tr>
2014-12-12 13:28:20 -05:00
<td class='key'>{{k.key}}</td>
2013-10-22 15:53:08 -04:00
<td>
2014-12-12 13:28:20 -05:00
{{#if k.user}}
{{#link-to 'adminUser' k.user}}
{{avatar k.user imageSize="small"}}
2013-10-22 15:53:08 -04:00
{{/link-to}}
{{else}}
{{i18n 'admin.api.all_users'}}
2013-10-22 15:53:08 -04:00
{{/if}}
</td>
<td>
2014-12-12 13:28:20 -05:00
<button class='btn' {{action "regenerateKey" k}}><i class="fa fa-undo"></i>{{i18n 'admin.api.regenerate'}}</button>
<button class='btn' {{action "revokeKey" k}}><i class="fa fa-times"></i>{{i18n 'admin.api.revoke'}}</button>
2013-10-22 15:53:08 -04:00
</td>
</tr>
{{/each}}
</table>
2013-03-25 21:04:28 -04:00
{{else}}
<p>{{i18n 'admin.api.none'}}</p>
2013-03-25 21:04:28 -04:00
{{/if}}
2013-10-22 15:53:08 -04:00
{{#unless hasMasterKey}}
<button class='btn' {{action "generateMasterKey"}}><i class="fa fa-key"></i>{{i18n 'admin.api.generate_master'}}</button>
2013-10-22 15:53:08 -04:00
{{/unless }}