switch to ras-dan-01
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after -56s
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after -56s
This commit is contained in:
22
files/templates/add_ausgabe.html
Normal file
22
files/templates/add_ausgabe.html
Normal file
@@ -0,0 +1,22 @@
|
||||
{% extends "base.html" %}
|
||||
{% block body %}
|
||||
<form action="{{ url }}" method="POST">
|
||||
<input type="number"
|
||||
step="0.01"
|
||||
min="1"
|
||||
max="10000"
|
||||
placeholder="Ausgaben"
|
||||
name="{{ select_id_text }}"
|
||||
id="{{ select_id_text }}">
|
||||
|
||||
<select name="{{ select_id }}" id="{{ select_id }}">
|
||||
{% for name in data %}
|
||||
<option value="{{ name }}">{{ name }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
|
||||
<button type="submit"> Eingabe </button>
|
||||
|
||||
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user