dashboard.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. <template name="dashboard">
  2. <div class="row">
  3. {{#each rooms}}
  4. {{#if private}}
  5. {{#if isModerator}}
  6. <div class="col-md-4 col-sm-6 col-xs-12">
  7. <div class="station" style="background-color: gray">
  8. <h3>{{display}}</h3>
  9. {{#with type=type}}
  10. <h5>{{currentSong.song.title}}</h5>
  11. <h6>{{currentSong.song.artist}}</h6>
  12. {{/with}}
  13. <a href="/{{type}}" class="station_link"></a>
  14. </div>
  15. </div>
  16. {{/if}}
  17. {{else}}
  18. <div class="col-md-4 col-sm-6 col-xs-12">
  19. <div class="station">
  20. {{#with type=type}}
  21. <i class="fa fa-user user-num"></i> <span class="user-num">{{userNum}}</span>
  22. {{/with}}
  23. <h3>{{display}}</h3>
  24. {{#with type=type}}
  25. <h5>{{currentSong.song.title}}</h5>
  26. <h6>{{currentSong.song.artist}}</h6>
  27. {{/with}}
  28. <a href="/{{type}}" class="station_link"></a>
  29. </div>
  30. </div>
  31. {{/if}}
  32. {{/each}}
  33. </div>
  34. </template>