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

12 lines
354 B
Handlebars

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