drobne zmiany

This commit is contained in:
Mateusz Gruszczyński 2025-03-17 11:13:54 +01:00
parent 14bf893cb0
commit 26a9d803a1
4 changed files with 18 additions and 7 deletions

View File

@ -154,4 +154,15 @@ h3 { font-size: 0.9rem; margin-bottom: 0.6rem; }
color: #ffffff !important;
font-weight: bold;
font-size: 1.25rem;
}
.btn-primary:focus,
.btn-primary:active,
.btn-primary.focus,
.btn-primary.active {
background-color: #2d2c2c !important;
border-color: #ffeb3b !important;
color: #ffffff !important;
box-shadow: none;
outline: none;
}

View File

@ -12,7 +12,7 @@
<label for="stan" class="form-label">Nowy stan zbiórki (PLN)</label>
<div class="input-group">
<span class="input-group-text">PLN</span>
<input type="number" step="0.01" class="form-control" id="stan" name="stan" value="{{ zbiorka.stan }}" required>
<input type="number" step="0.01" class="form-control" id="stan" name="stan" value="{{ zbiorka.stan|round(2) }}" required>
</div>
</div>
<button type="submit" class="btn btn-info">Aktualizuj stan</button>

View File

@ -9,7 +9,7 @@
<div class="card-body">
<h5 class="card-title">{{ z.nazwa }}</h5>
{% set progress = (z.stan / z.cel * 100) if z.cel > 0 else 0 %}
<div class="progress mb-3" style="height: 20px;">
<div class="progress mb-3">
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar" style="width: {{ progress if progress < 100 else 100 }}%;" aria-valuenow="{{ progress }}" aria-valuemin="0" aria-valuemax="100">
{{ progress|round(2) }}%
</div>

View File

@ -17,7 +17,7 @@
</div>
{% set progress = (zbiorka.stan / zbiorka.cel * 100) if zbiorka.cel > 0 else 0 %}
<h5>Postęp:</h5>
<div class="progress mb-3" style="height: 40px;">
<div class="progress mb-3">
<div class="progress-bar progress-bar-striped progress-bar-animated"
role="progressbar"
style="width: {{ progress if progress < 100 else 100 }}%;"
@ -46,11 +46,11 @@
<hr>
<p class="card-text">
<strong>Cel zbiórki:</strong>
<span class="fs-4">{{ zbiorka.cel }} PLN</span>
<span class="fs-4">{{ zbiorka.cel|round(2) }} PLN</span>
</p>
<p class="card-text">
<strong>Stan zbiórki:</strong>
<span class="fs-4">{{ zbiorka.stan }} PLN</span>
<span class="fs-4">{{ zbiorka.stan|round(2) }} PLN</span>
</p>
{% endif %}
</div>
@ -78,7 +78,7 @@
<ul class="list-group">
{% for w in zbiorka.wplaty %}
<li class="list-group-item">
<strong>{{ w.data.strftime('%Y-%m-%d %H:%M:%S') }}</strong> {{ w.kwota }} PLN
<strong>{{ w.data.strftime('%Y-%m-%d %H:%M:%S') }}</strong> {{ w.kwota|round(2) }} PLN
{% if w.opis %}
<em class="text-muted">({{ w.opis }})</em>
{% endif %}
@ -86,7 +86,7 @@
{% endfor %}
</ul>
{% else %}
<p class="text-center">Brak wpłat</p>
<p class="text-center">Aktualnie brak wpłat..</p>
{% endif %}
</div>
</div>