wersja 0.0.4 #7

Merged
gru merged 47 commits from zliczanie_wydatkow_i_poprawki_w_js into master 2025-07-28 22:17:13 +02:00
2 changed files with 25 additions and 13 deletions
Showing only changes of commit 18e2d376c2 - Show all commits

View File

@@ -55,7 +55,7 @@
📊 Postęp listy —
<span id="purchased-count">{{ purchased_count }}</span>/
<span id="total-count">{{ total_count }}</span> kupionych
(<span id="percent-value">{{ percent|round(0) }}</span>%)
(<span id="percent-value">{{ percent|int }}</span>%)
</h5>
<div class="progress progress-dark position-relative">
@@ -108,13 +108,19 @@
{% endif %}
</span>
{% if item.note %}
<small class="text-danger ms-4">[ <b>{{ item.note }}</b> ]</small>
{% endif %}
{% if item.not_purchased_reason %}
<small class="text-dark ms-4">[ <b>Powód: {{ item.not_purchased_reason }}</b> ]</small>
{% endif %}
<div class="info-line ms-4 small d-flex flex-wrap gap-2" id="info-{{ item.id }}">
{% if item.note %}
<span class="text-danger">[ <b>{{ item.note }}</b> ]</span>
{% endif %}
{% if item.not_purchased_reason %}
<span class="text-dark">[ <b>Powód: {{ item.not_purchased_reason }}</b> ]</span>
{% endif %}
{% if item.added_by and item.owner_id and item.added_by_id and item.added_by_id != item.owner_id %}
<span class="text-info">[ Dodał/a: <b>{{ item.added_by }}</b> ]</span>
{% endif %}
</div>
</div>
<div class="btn-group btn-group-sm" role="group">

View File

@@ -43,12 +43,18 @@
{% endif %}
</span>
{% if item.note %}
<small class="text-danger ms-4">[ <b>{{ item.note }}</b> ]</small>
{% endif %}
{% if item.not_purchased_reason %}
<small class="text-dark ms-4">[ <b>Powód: {{ item.not_purchased_reason }}</b> ]</small>
{% endif %}
<div class="info-line ms-4 small d-flex flex-wrap gap-2" id="info-{{ item.id }}">
{% if item.note %}
<span class="text-danger">[ <b>{{ item.note }}</b> ]</span>
{% endif %}
{% if item.not_purchased_reason %}
<span class="text-dark">[ <b>Powód: {{ item.not_purchased_reason }}</b> ]</span>
{% endif %}
{% if item.added_by and item.owner_id and item.added_by_id and item.added_by_id != item.owner_id %}
<span class="text-info">[ Dodał/a: <b>{{ item.added_by }}</b> ]</span>
{% endif %}
</div>
</div>
<div class="btn-group btn-group-sm" role="group">