male zmiany w css

This commit is contained in:
Mateusz Gruszczyński 2025-02-25 22:35:38 +01:00
parent 4bac59a118
commit d66797312d

View File

@ -28,6 +28,7 @@
<h3>Pliki z /export</h3>
{% if export_backups %}
<!-- Tabela z indywidualnymi akcjami -->
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
@ -54,7 +55,6 @@
<td>
<a href="{{ url_for('download_file', filename=b.file_path|basename) }}" class="btn btn-sm btn-info">Pobierz</a>
<a href="{{ url_for('view_export', backup_id=b.id) }}" class="btn btn-sm btn-outline-primary">Podgląd</a>
<form action="{{ url_for('send_by_email', backup_id=b.id) }}" method="POST" style="display: inline;">
<button type="submit" class="btn btn-sm btn-primary">Wyślij mailem</button>
</form>
@ -67,8 +67,11 @@
{% endfor %}
</tbody>
</table>
</div>
<!-- Formularz do pobierania ZIP zaznaczonych eksportów -->
<h4>Pobierz wybrane pliki z /export jako zip</h4>
<div class="table-responsive">
<form action="{{ url_for('download_zip') }}" method="POST">
<table class="table table-bordered">
<thead>
@ -86,12 +89,13 @@
<td>{{ b.file_path|basename }}</td>
<td>{{ b.file_path|filesize }}</td>
<td>{{ b.created_at }}</td>
</tr>
</tr>
{% endfor %}
</tbody>
</table>
<button type="submit" class="btn btn-success">Pobierz zaznaczone (.zip)</button>
</form>
</div>
{% else %}
<p class="text-muted">Pusto</p>
{% endif %}
@ -101,6 +105,7 @@
<!-- Sekcja backupów binarnych -->
<h3>Pliki binarne (.backup)</h3>
{% if binary_backups %}
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
@ -118,7 +123,6 @@
<td>{{ b.created_at }}</td>
<td>
<a href="{{ url_for('download_file', filename=b.file_path|basename) }}" class="btn btn-sm btn-info">Pobierz</a>
<form action="{{ url_for('upload_backup', router_id=router.id, backup_id=b.id) }}" method="POST" class="d-inline">
<button type="submit" class="btn btn-sm btn-secondary">Wgraj do routera</button>
</form>
@ -134,9 +138,11 @@
{% endfor %}
</tbody>
</table>
</div>
<!-- Formularz do pobierania ZIP zaznaczonych backupów binarnych -->
<h4>Pobierz wybrane backupy binarne jako zip</h4>
<div class="table-responsive">
<form action="{{ url_for('download_zip') }}" method="POST">
<table class="table table-bordered">
<thead>
@ -160,6 +166,7 @@
</table>
<button type="submit" class="btn btn-success">Pobierz zaznaczone (.zip)</button>
</form>
</div>
{% else %}
<p class="text-muted">Pusto</p>
{% endif %}