30 lines
572 B
PHP
30 lines
572 B
PHP
<table id='playlist'>
|
|
<thead>
|
|
<tr>
|
|
<th class='name'><input id='selectAll' type='checkbox'>Name</th>
|
|
<th class='artist'>Artist</th>
|
|
<th class='album'>Album</th>
|
|
<th class='time'>Time</th>
|
|
<th class='plays'>Plays</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>
|
|
<td class='album'></td>
|
|
<td class='time'></td>
|
|
<td class='plays'></td>
|
|
</tr>
|
|
</tfoot>
|
|
</table> |