discussionList.handlebars 895 B

12345678910111213141516171819202122232425262728293031
  1. <div class="ig-header">
  2. <button
  3. class="ig-header-title element_toggler"
  4. aria-controls="{{listID}}"
  5. aria-expanded="true"
  6. >
  7. <i class="icon-mini-arrow-down"></i>
  8. {{title}}
  9. </button>
  10. {{#if titleHelp}}
  11. <span class="pull-right title-help">{{titleHelp}}</span>
  12. {{/if}}
  13. </div>
  14. <div id="{{listID}}">
  15. <ul class="collectionViewItems ig-list"></ul>
  16. <div class="no-content discussion">
  17. {{#if pinned}}
  18. <b>{{#t "no_pinned_discussions"}}You currently have no pinned discussions{{/t}}</b>
  19. <p>{{#t "pinned_instructions"}}To pin a discussion to the top of the page, drag a discussion here, or select Pin from the discussion settings menu.{{/t}}</p>
  20. {{else}}
  21. {{#t "there_are_no_discussions_show"}}There are no discussions to show in this section.{{/t}}
  22. {{/if}}
  23. </div>
  24. {{#if showSpinner}}
  25. <div class="loader"></div>
  26. {{/if}}
  27. </div>