mirror of
https://github.com/KUlishevgeniy/c22712.git
synced 2026-09-23 23:50:21 +00:00
17 lines
507 B
Python
17 lines
507 B
Python
from django.http import HttpResponse
|
|
from django.shortcuts import render
|
|
from db_get_data import exec_query
|
|
|
|
def index(request):
|
|
context = {
|
|
"data": exec_query("select name, file, description from images")
|
|
}
|
|
|
|
for i in range(len(context["data"])):
|
|
context["data"][i] = list(context["data"][i])
|
|
context["data"][i][1] = "polls/images/" + context["data"][i][1].split("/")[-1]
|
|
|
|
print(context["data"])
|
|
return HttpResponse(render(request, "polls/index.html", context))
|
|
|