mirror of
https://github.com/KUlishevgeniy/c22712.git
synced 2026-09-26 00:50:20 +00:00
19 lines
430 B
HTML
19 lines
430 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% load static %}
|
|
<link rel="stylesheet" href="{% static 'polls/style.css' %}">
|
|
<title>TEST</title>
|
|
</head>
|
|
<body>
|
|
|
|
{% 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 %}
|
|
</body>
|
|
</html> |