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

20 lines
543 B
HTML

<!-- templates/regions.html -->
{% extends "base.html" %}
{% block title %}Регионы{% endblock %}
{% block content %}
<h2>Регионы</h2>
<table class="table table-bordered">
<thead>
<tr>
<th>ID</th>
<th>Название</th>
<th>Активен</th>
</tr>
</thead>
<tbody id="regions-table">
</tbody>
</table>
{% endblock %}
{% block scripts %}
<script src="{{ url_for('static', filename='js/regions.js') }}"></script>
{% endblock %}