getpgdata: Flask-приложение для доступа к PostgreSQL (Nubes структура)

This commit is contained in:
naeel
2026-08-18 18:12:04 +04:00
commit 5c5e11c5a8
9 changed files with 598 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ошибка {{ code }}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<header><h1>Ошибка {{ code }}</h1></header>
<main>
<p class="error">{{ message }}</p>
<p><a href="{{ url_for('index') }}">← На главную</a></p>
</main>
</body>
</html>