Files
racalmas/website/agenda/planung/templates/upload-audio-recordings.html
2020-12-15 13:35:30 +01:00

124 lines
4.4 KiB
HTML

<TMPL_IF .allow.upload_audio_recordings>
<div id="error" class="error" style="display:none"></div>
<div id="info" class="ok" style="display:none"></div>
<h2>
<TMPL_VAR event.weekday_short_name>, <TMPL_VAR event.start_date_name> <TMPL_VAR event.start_time_name><br>
<TMPL_VAR event.full_title><br>
</h2>
<div class="panel">
<img src="<TMPL_VAR event.icon>"><TMPL_VAR event.excerpt><br>
</div>
<hr/>
<TMPL_UNLESS isOver>
<div id="progress" style="display:none;vertical-align:middle;background:#aaa;text-align:center;margin:1em;padding:1em;font-size:1em;font-weight:bold;color:#fff" >
<div>Ich lade jetzt die Datei hoch... Pieps.</div>
<div><img src="/agenda/image/upload/bird9.gif" /></div>
<div>Ist das aufregend!</div>
<progress id="progressBar"></progress>
<div id="progressLabel"></div>
</div>
<form name="audio_recordings_upload" id="audio_recordings_upload" method="post" enctype="multipart/form-data">
<input type="hidden" name="project_id" value="<TMPL_VAR project_id>" />
<input type="hidden" name="studio_id" value="<TMPL_VAR studio_id>" />
<input type="hidden" name="series_id" value="<TMPL_VAR series_id>" />
<input type="hidden" name="event_id" value="<TMPL_VAR event_id>" />
<input type="hidden" name="action" value="upload" />
<table>
<tr>
<td>Datei</td>
<td><input type="file" id="file" name="upload" size="20" accept="audio/*" maxlength="2000000000" /></td>
<td colspan="2" style="text-align:right;padding-right:0.5em;" id="uploadSize"></td>
<td colspan="2" style="text-align:right;padding-right:0.5em;" >
<button id="uploadButton" name="action" value="upload" >upload</button>
</td>
<td>
<TMPL_IF filename>
<TMPL_VAR filename escape=none>"
</TMPL_IF>
</td>
</tr>
</table>
</form>
</TMPL_UNLESS>
</TMPL_IF>
<table>
<tr>
<th>action</th>
<th>name</th>
<th>uploaded by</th>
<th>uploaded at</th>
<th>size in bytes</th>
<th>event duration in seconds</th>
<th>audio duration in seconds</th>
<th>RMS L</th>
<th>RMS R</th>
<th>processed</th>
<th>mastered</th>
<th>modified at</th>
</tr>
<TMPL_LOOP audio_recordings>
<tr>
<td><button onclick="playAudio('<TMPL_VAR path>');return false">play</button></td>
<td><TMPL_VAR path></td>
<td><TMPL_VAR created_by></td>
<td><TMPL_VAR created_at></td>
<td><TMPL_VAR size></td>
<td><TMPL_VAR eventDuration></td>
<td><TMPL_VAR audioDuration escape="text"></td>
<td><TMPL_VAR rmsLeft escape="text"></td>
<td><TMPL_VAR rmsRight escape="text"></td>
<td><TMPL_VAR processed></td>
<td><TMPL_VAR mastered></td>
<td><TMPL_VAR modified_at></td>
<TMPL_IF .allow.delete_audio_recordings>
<td>
<form method="post">
<input type="hidden" name="project_id" value="<TMPL_VAR project_id>" />
<input type="hidden" name="studio_id" value="<TMPL_VAR studio_id>" />
<input type="hidden" name="series_id" value="<TMPL_VAR .series_id>" />
<input type="hidden" name="event_id" value="<TMPL_VAR event_id>" />
<input type="hidden" name="path" value="<TMPL_VAR path>" />
<button type="submit" name="action" value="delete"><TMPL_VAR .loc.button_delete></button>
</form>
</td>
</TMPL_IF>
</tr>
</TMPL_LOOP>
</table>
<!--
<pre>
name: <TMPL_VAR path>
size: <TMPL_VAR size>
</pre>
<TMPL_IF action>
<TMPL_IF error>
<div class="error" id="message"><TMPL_VAR error></div>
<TMPL_ELSE>
<div class="oky" id="message" style="display:none">
<TMPL_VAR action_result>
<TMPL_VAR filename>
</div>
</TMPL_IF>
</TMPL_IF>
-->
</main>
</body>
</html>