This commit is contained in:
Sklvd
2023-05-21 20:07:57 +03:00
parent d261687d10
commit dcd314ca7a
12 changed files with 23 additions and 11 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 442 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 439 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 147 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 398 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 512 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 355 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

@@ -7,14 +7,13 @@
</head>
<body>
<table>
{% for i in list %}
<tr>
<th>{{ i }}</th>
<th>{{ i }}</th>
</tr>
{% for time, file_path in data %}
<div>
<div style="height: 32px;">
<span itemprop="name">{{ time }}</span>
</div>
<img itemprop="image" alt="name to be replaced" src="{% static file_path %}" width=500px>
</div>
{% endfor %}
</table>
</body>
</html>
@@ -1,10 +1,23 @@
from django.http import HttpResponse
from django.shortcuts import render
import psycopg2
def execute_request(request):
connection = psycopg2.connect(host='localhost', dbname='dbdata',
user='postgres', password='Q1w2e3r4')
cursor = connection.cursor()
cursor.execute(request)
result = cursor.fetchall()
cursor.close()
connection.close()
return result
def index(request):
context = {
"text": "test",
"list": [0, 1, 2, 3, "frogg"]
"data": execute_request("select name, link from parsing")[:10]
}
for i in range(len(context["data"])):
context["data"][i] = list(context["data"][i])
context["data"][i][1] = f"polls/img/{i}.jpg"
return HttpResponse(render(request, "polls/index.html", context))