summaryrefslogtreecommitdiffstats
path: root/apps/media/templates/music.php
blob: d103e10b7502bfb27cf1f8487b8656723bdde202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<div id="controls">
	<ul class="jp-controls">
		<li><a href="#" class="jp-play" tabindex="1">play</a></li>
		<li><a href="#" class="jp-pause" tabindex="1">pause</a></li>
		<li><a href="#" class="jp-mute" tabindex="1">mute</a></li>
		<li><a href="#" class="jp-unmute" tabindex="1">unmute</a></li>
		<li><a href="#" class="jp-previous" tabindex="1">previous</a></li>
		<li><a href="#" class="jp-next" tabindex="1">next</a></li>
	</ul>
	<div class="jp-progress">
		<div class="jp-seek-bar">
			<div class="jp-play-bar"></div>
		</div>
	</div>
	<div class="jp-volume-bar">
		<div class="jp-volume-bar-value"></div>
	</div>
	<div class="jp-current-time"></div>
	<div class="jp-duration"></div>
	<div class="player" id="jp-player"></div>
</div>

<div id="leftcontent">
<table id="playlist">
	<thead>
		<tr>
			<th class="name"><input id="selectAll" type="checkbox"><?php echo $l->t('Name')?></th>
			<th class="artist"><?php echo $l->t('Artist')?></th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>
				<?php echo $l->t('The playlist is empty')?>
			</td>
		</tr>
	</tbody>
	<tfoot>
		<tr class="template">
			<td class="name">
				<input type="checkbox">
				<span></span>
			</td>
			<td class="artist"></td>
		</tr>
	</tfoot>
</table>
</div>

<div id="rightcontent">
<div id="scan">
	<p id="scancount" style="display:none"><span class="songCount">0</span> <?php echo $l->t('Songs scanned')?></p>
	<div id="scanprogressbar"></div>
	<input type="button" class="start" value="<?php echo $l->t('Rescan Collection')?>"></input>
	<input type="button" class="stop" style="display:none" value="<?php echo $l->t('Pause')?>"></input>
</div>
<table id="collection">
	<thead>
		<th><?php echo $l->t('Artist')?></th>
		<th><?php echo $l->t('Album')?></th>
		<th><?php echo $l->t('Title')?></th>
	</thead>
	<tbody>
		<tr class="template">
			<td class="artist"><a/></td>
			<td class="album"><a/></td>
			<td class="title"><a/></td>
		</tr>
	</tbody>
</table>
</div>