fix in js

This commit is contained in:
Mateusz Gruszczyński 2025-02-24 13:47:01 +01:00
parent fe5e0e6374
commit 54b7d62e72
2 changed files with 24 additions and 21 deletions

View File

@ -63,6 +63,8 @@
</footer> </footer>
<!-- Bootstrap JS --> <!-- Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
{% block extra_scripts %}{% endblock %}
</body> </body>
</html> </html>

View File

@ -1,7 +1,8 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %}Logi - Aplikacja Updatera{% endblock %} {% block title %}Logi - Aplikacja Updatera{% endblock %}
{% block extra_head %} {% block extra_head %}
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.13.1/css/jquery.dataTables.min.css"> <!-- Dołącz styl CSS biblioteki VanillaDataTables -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vanilla-datatables@latest/dist/vanilla-dataTables.min.css">
{% endblock %} {% endblock %}
{% block content %} {% block content %}
<h2>Logi</h2> <h2>Logi</h2>
@ -31,34 +32,34 @@
<td>{{ log.timestamp.strftime('%Y-%m-%d %H:%M:%S') }}</td> <td>{{ log.timestamp.strftime('%Y-%m-%d %H:%M:%S') }}</td>
<td> <td>
{% if log.device_id %} {% if log.device_id %}
<a href="{{ url_for('device_detail', device_id=log.device.id) }}"> <a href="{{ url_for('device_detail', device_id=log.device.id) }}">
{{ log.device.name if log.device.name else "Urządzenie #" ~ log.device.id }} {{ log.device.name if log.device.name else "Urządzenie #" ~ log.device.id }}
</a> </a>
{% else %} {% else %}
Ogólne Ogólne
{% endif %} {% endif %}
</td> </td>
<td><pre style="white-space: pre-wrap;">{{ log.message }}</pre></td> <td><pre style="white-space: pre-wrap;">{{ log.message }}</pre></td>
</tr> </tr>
{% else %}
<tr>
<td colspan="3" class="text-center">Brak logów.</td>
</tr>
{% endfor %} {% endfor %}
</tbody> </tbody>
</table> </table>
{% endblock %}
<!-- Dodanie bibliotek DataTables i inicjalizacja --> {% block extra_scripts %}
<script src="https://code.jquery.com/jquery-3.5.1.js"></script> <!-- Dołącz skrypt biblioteki VanillaDataTables -->
<script src="https://cdn.datatables.net/1.13.1/js/jquery.dataTables.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/vanilla-datatables@latest/dist/vanilla-dataTables.min.js"></script>
<script> <script>
$(document).ready( function () { // Inicjalizacja VanillaDataTables dla tabeli logów
$('#logsTable').DataTable({ const dataTable = new DataTable("#logsTable", {
"order": [[0, "desc"]], searchable: true,
"language": { sortable: true,
"url": "//cdn.datatables.net/plug-ins/1.13.1/i18n/Polish.json" perPage: 10,
labels: {
placeholder: "Szukaj...", // placeholder dla pola wyszukiwania
perPage: "{select} wpisów na stronę", // etykieta przy wyborze liczby wierszy
noRows: "Brak logów.", // komunikat, gdy tabela jest pusta
info: "Wyświetlono {start} - {end} z {rows} logów" // tekst z informacją o paginacji
} }
}); });
}); </script>
</script>
{% endblock %} {% endblock %}