12345678910111213141516171819202122232425262728293031 |
- <template name="dashboard">
- <div class="row">
- {{#each rooms}}
- {{#if private}}
- {{#if isModerator}}
- <div class="col-md-4 col-sm-6 col-xs-12">
- <div class="station" style="background-color: gray">
- <h3>{{display}}</h3>
- {{#with type=type}}
- <h5>{{currentSong.song.title}}</h5>
- <h6>{{currentSong.song.artist}}</h6>
- {{/with}}
- <a href="/{{type}}" class="station_link"></a>
- </div>
- </div>
- {{/if}}
- {{else}}
- <div class="col-md-4 col-sm-6 col-xs-12">
- <div class="station">
- <h3>{{display}}</h3>
- {{#with type=type}}
- <h5>{{currentSong.song.title}}</h5>
- <h6>{{currentSong.song.artist}}</h6>
- {{/with}}
- <a href="/{{type}}" class="station_link"></a>
- </div>
- </div>
- {{/if}}
- {{/each}}
- </div>
- </template>
|