init commit

This commit is contained in:
2026-06-15 14:18:53 +03:00
commit 654fe90c10
26 changed files with 954 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
body {
font-size:20pt
}
td {
border: 1px solid #ccc;
}
</style>
</head>
<body>
{{ user.username }} <a href="/logout">Выход</a> <a href="/">на главную</a>
<table>
{% for r in resolvs %}
<tr>
<td>{{u_list|dict_key:r}}</td><td>{{ext|dict_key:r}}</td>
</tr>
{% endfor %}
</table>
</body>
</html>