Telezab/templates/logs.html
2025-03-17 15:30:58 +05:00

10 lines
297 B
HTML

<!-- templates/logs.html -->
{% extends "base.html" %}
{% block title %}Логи{% endblock %}
{% block content %}
<h2>Логи</h2>
<pre id="logs-container"></pre>
{% endblock %}
{% block scripts %}
<script src="{{ url_for('static', filename='js/logs.js') }}"></script>
{% endblock %}