django test

This commit is contained in:
Sklvd
2023-05-12 23:02:27 +03:00
parent e094efa7aa
commit a657428482
25 changed files with 331 additions and 0 deletions
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
{% load static %}
<link rel="stylesheet" href="{% static 'polls/style.css' %}">
<title>TEST</title>
</head>
<body>
<table>
{% for i in list %}
<tr>
<th>{{ i }}</th>
<th>{{ i }}</th>
</tr>
{% endfor %}
</table>
</body>
</html>