Alot of misc changes and fixes. Titles with a forward slash are now being corrected for insert in db.

This commit is contained in:
Maximilian Wagner
2023-08-05 15:46:27 +02:00
parent f6eb82ed6a
commit 306d3b6c88
10 changed files with 83 additions and 39 deletions

View File

@@ -43,7 +43,7 @@
{% for video in videos %}
{% if 'mp3' in video['ext'] %}
<tr>
<td class="text-center align-middle">{{ video['name'] }}</td>
<td class="text-center align-middle"><a class="btn btn-link" href="/player?file={{ video['path'] + video['name'] + video['ext'] }}">{{ video['name'] }}</a></td>
<td class="text-center align-middle"><a class="btn btn-link" href="/download?file={{ video['path'] + video['name'] + video['ext'] }}" download>Download</a></td>
<td class="text-center align-middle"><a class="btn btn-danger" href="/delete?file={{ video['path'] + video['name'] + video['ext'] }}&from=/library"> </a></td>
</tr>