mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-03 03:55:26 +03:00
b8a1036a43
closes TryGhost/Ghost#8107 - replaces all icons in Ghost-Admin with SVGs by using our new helper {{inline-svg}}. - removes all ghosticon fonts. This is the second and final batch of the refactor.
29 lines
850 B
Handlebars
29 lines
850 B
Handlebars
{{#light-table table scrollBuffer=100 as |t|}}
|
|
{{t.head
|
|
onColumnClick=(action sortByColumn)
|
|
iconAscending="gh-icon-ascending"
|
|
iconDescending="gh-icon-descending"}}
|
|
|
|
{{#t.body
|
|
canSelect=false
|
|
tableActions=(hash delete=delete)
|
|
scrollBuffer=100
|
|
onScrolledToBottom=(action 'onScrolledToBottom')
|
|
as |body|
|
|
}}
|
|
{{#if isLoading}}
|
|
{{#body.loader}}
|
|
<div class="gh-loading-content" style="margin-top: 2em;">
|
|
<div class="gh-loading-spinner"></div>
|
|
</div>
|
|
{{/body.loader}}
|
|
{{else}}
|
|
{{#if table.isEmpty}}
|
|
{{#body.no-data}}
|
|
No subscribers found.
|
|
{{/body.no-data}}
|
|
{{/if}}
|
|
{{/if}}
|
|
{{/t.body}}
|
|
{{/light-table}}
|