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; color: #ffffff !important;
font-weight: bold; font-weight: bold;
font-size: 1.25rem; 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> <label for="stan" class="form-label">Nowy stan zbiórki (PLN)</label>
<div class="input-group"> <div class="input-group">
<span class="input-group-text">PLN</span> <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>
</div> </div>
<button type="submit" class="btn btn-info">Aktualizuj stan</button> <button type="submit" class="btn btn-info">Aktualizuj stan</button>

View File

@ -9,7 +9,7 @@
<div class="card-body"> <div class="card-body">
<h5 class="card-title">{{ z.nazwa }}</h5> <h5 class="card-title">{{ z.nazwa }}</h5>
{% set progress = (z.stan / z.cel * 100) if z.cel > 0 else 0 %} {% 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"> <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) }}% {{ progress|round(2) }}%
</div> </div>

View File

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