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