first commit
This commit is contained in:
13
templates/admin/edytuj_stan.html
Normal file
13
templates/admin/edytuj_stan.html
Normal file
@ -0,0 +1,13 @@
|
||||
{% extends 'base.html' %}
|
||||
{% block title %}Edytuj stan zbiórki{% endblock %}
|
||||
{% block content %}
|
||||
<h1>Edytuj stan zbiórki: {{ zbiorka.nazwa }}</h1>
|
||||
<form method="post">
|
||||
<div class="mb-3">
|
||||
<label for="stan" class="form-label">Nowy stan zbiórki (PLN)</label>
|
||||
<input type="number" step="0.01" class="form-control" id="stan" name="stan" value="{{ zbiorka.stan }}" required>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">Aktualizuj stan</button>
|
||||
<a href="{{ url_for('admin_dashboard') }}" class="btn btn-secondary">Powrót</a>
|
||||
</form>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user