init
Some checks failed
Deploy to ras-dan-01 / deploy (push) Has been cancelled

This commit is contained in:
2025-08-26 14:35:48 +02:00
commit 370974a57d
22 changed files with 1523 additions and 0 deletions

20
templates/add_movie.html Normal file
View File

@@ -0,0 +1,20 @@
{% extends "base.html" %}
{% block body %}
<form action="{{ url }}" method="POST" class="mb-3">
<div class="mb-3">
<input type="text"
class="form-control"
placeholder="Movie"
name="{{ select_movie }}"
id="{{ select_movie }}">
</div>
<div class="mb-3">
<select name="{{ select_medium }}" id="{{ select_medium }}" class="form-select">
{% for name in data_medium %}
<option value="{{ name }}">{{ name }}</option>
{% endfor %}
</select>
</div>
<button type="submit" class="btn btn-primary">Eingabe</button>
</form>
{% endblock %}