Add Comand to Library
All checks were successful
/ release (push) Successful in 32s

This commit is contained in:
speatzle 2024-10-08 16:42:25 +02:00
parent f401127127
commit 011f97a3e6
5 changed files with 52 additions and 4 deletions

View file

@ -6,6 +6,18 @@
<label>Full:</label><br />
<input type="checkbox" name="full"><br />
<input value="Scan" type="submit">
<label for="health_command">Health Command:</label>
<select id="health_command" name="health_command">
{{range $l := .FfmpegCommands}}
<option value="{{$l.ID}}">{{$l.Name}}</option>
{{end}}
</select>
<label for="transcode_command">Transcode Command:</label>
<select id="transcode_command" name="transcode_command">
{{range $l := .FfmpegCommands}}
<option value="{{$l.ID}}">{{$l.Name}}</option>
{{end}}
</select>
</form>
<div class="file-list">
<table>
@ -49,4 +61,4 @@
{{end}}
</table>
</div>
{{template "tail"}}
{{template "tail"}}