20 lines
543 B
HTML
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 %} |