summaryrefslogtreecommitdiffstats
path: root/apps/media/templates/playlist.php
blob: f99e8a0608d413e8064a7c84ed87e0fa660c20a1 (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
<table id='playlist'>
	<thead>
		<tr>
			<th class='name'><input id='selectAll' type='checkbox'>Name</th>
			<th class='artist'>Artist</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>
				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>