Files
racalmas/website/agenda/planung/templates/show-playout.html
Milan 9792336ac8 filenames
use kebab-case for file names
remove camelCase and snake_case
2020-11-14 21:06:22 +01:00

47 lines
1.3 KiB
HTML

<link href="css/jquery-ui-timepicker.css" type="text/css" rel="stylesheet" />
<script src="js/jquery-ui-timepicker.js" type="text/javascript"></script>
<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/jquery.tablesorter.widgets.min.js"></script>
<script src="js/jquery.tablesorter.scroller.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="/agenda_files/playout/<TMPL_VAR rms_image>"><img src="/agenda_files/playout/<TMPL_VAR rms_image>"></a></TMPL_IF></td>
<td><TMPL_VAR stream_size></td>
</tr>
</TMPL_LOOP>
</tbody>
</table>