try
Some checks failed
Deploy to ras-dan-01 / deploy (push) Failing after -1m24s

This commit is contained in:
2025-08-26 15:21:43 +02:00
parent 203739d799
commit 4f2df7fa86
4 changed files with 26 additions and 4 deletions

View File

@@ -21,6 +21,7 @@
<th>Regie</th>
<th>Medium</th>
<th>Erscheinungsjahr</th>
<th>Aktionen</th>
</tr>
</thead>
<tbody>
@@ -32,6 +33,11 @@
<td>{{list_all.get("regie")}}</td>
<td>{{list_all.get("medium")}}</td>
<td>{{list_all.get("release_year")}}</td>
<td>
<form action="{{ url_for('delete_movie', movie_id=list_all.get('id')) }}" method="post">
<button type="submit" class="btn btn-danger btn-sm">X</button>
</form>
</td>
</tr>
{% endfor %}
</tbody>