topics.hbs 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. {{> warning}}
  2. {{> error}}
  3. <div class="row">
  4. <div class="col-md-12">
  5. <h2>主题</h2>
  6. </div>
  7. </div>
  8. <div class="row">
  9. <div class="col-md-6">
  10. {{#if collection.length}}
  11. <table class="table table-condensed table-bordered">
  12. <tr>
  13. <th>Topic</th>
  14. {{#if graph_active}}<th width="120">队列</th>{{/if}}
  15. {{#if graph_active}}<th width="120">消息</th>{{/if}}
  16. {{#if graph_active}}<th width="120">速率</th>{{/if}}
  17. </tr>
  18. {{#each collection}}
  19. <tr>
  20. <td><a class="link" href="{{basePath "/topics"}}/{{urlencode name}}">{{name}}</a></td>
  21. {{#if ../graph_active}}<td><a class="link" href="{{basePath "/topics"}}/{{urlencode name}}"><img width="120" height="20" src="{{sparkline "topic" "" name "" "depth"}}"></a></td>{{/if}}
  22. {{#if ../graph_active}}<td><a class="link" href="{{basePath "/topics"}}/{{urlencode name}}"><img width="120" height="20" src="{{sparkline "topic" "" name "" "message_count"}}"></a></td>{{/if}}
  23. {{#if ../graph_active}}<td class="bold rate" target="{{rate "topic" "*" name ""}}"></td>{{/if}}
  24. </tr>
  25. {{/each}}
  26. </table>
  27. {{else}}
  28. <div class="alert alert-warning"><h4>注意</h4>没有主题</div>
  29. {{/if}}
  30. </div>
  31. </div>