30 lines
857 B
HTML
30 lines
857 B
HTML
<!doctype html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>WG Admin</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" />
|
|
</head>
|
|
<body>
|
|
<header class="top">
|
|
<h1>WG Admin</h1>
|
|
<nav>
|
|
<a href="{{ url_for('index') }}">Клиенты</a>
|
|
<a href="{{ url_for('new_peer') }}">Добавить peer</a>
|
|
<a href="{{ url_for('scripts') }}">Скрипты</a>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% if messages %}
|
|
{% for category, message in messages %}
|
|
<div class="alert {{category}}">{{message}}</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html>
|