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

@@ -15,7 +15,7 @@
<tbody>
{% for video in videos %}
<tr>
<td class="text-center">{{ video['name'] }}</td>
<td class="text-center"><a class="btn btn-link" href="/player?file={{ video['path'] + video['name'] + video['ext'] }}">{{ video['name'] }}</a></td>
<td class="text-center"><a class="btn btn-link" href="/download?file={{ video['path'] + video['name'] + video['ext'] }}" download>Download</a></td>
</tr>
{% endfor %}