Ghost/ghost/admin/app/templates/components/gh-subscribers-table.hbs
Aileen Nowak b8a1036a43 No more icon font: {{inline-svg}} - Part 2 (#642)
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.
2017-04-14 17:22:14 +01:00

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}}