kosmetyka

This commit is contained in:
Mateusz Gruszczyński
2025-08-20 21:15:20 +02:00
parent bfc2841c34
commit 8662d085f3
2 changed files with 4 additions and 3 deletions

View File

@@ -219,7 +219,7 @@
</h3>
<form method="post" action="{{ url_for('admin_delete_list') }}">
<div class="table-responsive">
<table class="table table-dark table-striped align-middle sortable">
<table class="table table-dark align-middle sortable">
<thead>
<tr>
<th><input type="checkbox" id="select-all"></th>

View File

@@ -95,6 +95,7 @@
<tr>
<th></th>
<th>Nazwa listy</th>
<th>Właściciel</th>
<th>Data</th>
<th>Wydatki (PLN)</th>
</tr>
@@ -112,9 +113,9 @@
</td>
<td>
<strong>{{ list.title }}</strong>
<br><small class="text-small">👤 {{ list.owner_username or '?' }}</small>
</td>
<td>{{ list.created_at.strftime('%Y-%m-%d') }}</td>
<td>👤 {{ list.owner_username or '?' }}</td>
<td>{{ list.created_at.strftime('%Y-%m-%d %H:%M') }}</td>
<td>{{ '%.2f'|format(list.total_expense) }}</td>
</tr>
{% endfor %}