mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
40 lines
1.5 KiB
Handlebars
40 lines
1.5 KiB
Handlebars
<div class='pull-right'>
|
|
{{#link-to 'adminWebHooks.show' 'new' tagName='button' classNames='btn'}}
|
|
{{d-icon 'plus'}} {{i18n 'admin.web_hooks.new'}}
|
|
{{/link-to}}
|
|
</div>
|
|
<div class='clearfix'></div>
|
|
<div class='web-hooks-listing'>
|
|
{{#if model}}
|
|
<p>{{i18n 'admin.web_hooks.instruction'}}</p>
|
|
{{#load-more selector=".web-hooks tr" action="loadMore"}}
|
|
<table class='web-hooks'>
|
|
<thead>
|
|
<tr>
|
|
<th>{{i18n 'admin.web_hooks.delivery_status.title'}}</th>
|
|
<th>{{i18n 'admin.web_hooks.payload_url'}}</th>
|
|
<th>{{i18n 'admin.web_hooks.description'}}</th>
|
|
<th>{{i18n 'admin.web_hooks.controls'}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each model as |webHook|}}
|
|
<tr>
|
|
<td>{{#link-to 'adminWebHooks.showEvents' webHook.id}}{{admin-web-hook-status deliveryStatuses=deliveryStatuses model=webHook}}{{/link-to}}</td>
|
|
<td>{{#link-to 'adminWebHooks.show' webHook}}{{webHook.payload_url}}{{/link-to}}</td>
|
|
<td class='description'>{{webHook.description}}</td>
|
|
<td class='controls'>
|
|
{{#link-to 'adminWebHooks.show' webHook tagName='button' classNames='btn btn-default no-text'}}{{d-icon 'edit'}}{{/link-to}}
|
|
{{d-button class="destroy btn-danger" action='destroy' actionParam=webHook icon="remove"}}
|
|
</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
{{conditional-loading-spinner condition=model.loadingMore}}
|
|
{{/load-more}}
|
|
{{else}}
|
|
<p>{{i18n 'admin.web_hooks.none'}}</p>
|
|
{{/if}}
|
|
</div>
|