1
0
mirror of https://github.com/danbee/mpd-client synced 2025-03-04 08:39:09 +00:00
mpd-client/assets/javascripts/views/queue.html
2014-04-15 15:32:17 +01:00

14 lines
455 B
HTML

<div id="queue">
<header>
<a class="library" href="#" ng-click="showLibrary()">Library</a>
<h1>Queue</h1>
</header>
<ol class="songs" ng-controller="queue">
<li ng-repeat="song in queueSongs" ng-click="playTrack(song.pos)" ng-class="{ playing: song.playing }">
<p class="title">{{ song.title }}</p>
<p class="artist">{{ song.artist }}</p>
<p class="length">{{ song.length | formatLength }}</p>
</li>
</ol>
</div>