Files
racalmas/website/agenda/planung/templates/show-playout.html
Milan ca6098f07a calendar.js: move RMS plots to /media
/media/playout should be used instead of /agenda_files/playout.
/media/ should include uploaded images as well (thumbs,images,icons).
2021-04-11 13:10:42 +02:00

40 lines
1.0 KiB
HTML

<script src="js/jquery.autosize.min.js" type="text/javascript"></script>
<link href="css/theme.default.css" rel="stylesheet">
<script src="js/jquery.tablesorter.min.js"></script>
<script src="js/image.js" type="text/javascript"></script>
<table id="playout-table" class="table">
<thead>
<tr>
<th>start</th>
<th>path</th>
<th>more</th>
<th>image</th>
<th>bytes</th>
</tr>
</thead>
<tbody>
<TMPL_LOOP events>
<tr class="<TMPL_VAR class>">
<td><TMPL_VAR start></td>
<td class="path"><TMPL_VAR file></td>
<td>
<TMPL_VAR duration escape="text">
<TMPL_VAR rms_left escape="text">
<TMPL_VAR rms_right escape="text">
<TMPL_VAR bitrate escape="text">
<TMPL_VAR bitrate_mode escape="text">
<TMPL_VAR sampling_rate escape="text">
<TMPL_VAR channels escape="text">
</td>
<td><TMPL_IF rms_image><a href="/media/playout/<TMPL_VAR rms_image>"><img src="/media/playout/<TMPL_VAR rms_image>"></a></TMPL_IF></td>
<td><TMPL_VAR stream_size></td>
</tr>
</TMPL_LOOP>
</tbody>
</table>