This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/templates/queued-posts.hbs
2019-02-28 13:03:14 -05:00

12 lines
406 B
Handlebars

<div class='container'>
<div class='queued-posts'>
{{#each model as |post|}}
{{queued-post post=post currentlyEditing=editing removePost=(route-action "removePost" post)}}
{{else}}
<p>{{i18n "queue.none"}}</p>
{{/each}}
{{d-button action=(route-action "refresh") label="refresh" icon="sync" disabled=model.refreshing class="btn-default" id='refresh-queued'}}
</div>
</div>