67 lines
1.7 KiB
HTML
Executable File
67 lines
1.7 KiB
HTML
Executable File
{% extends "home/base.html" %}
|
|
{% load static %}
|
|
|
|
{% block styles %}
|
|
<link rel="stylesheet" href="{% static 'first/style.css' %}" />
|
|
{% endblock %}
|
|
|
|
{% block headmain %}EKB{% endblock %}
|
|
|
|
{% block history_dropdown %}
|
|
{% if random_history %}
|
|
{% for ran in random_history %}
|
|
<a href="/{{ran.papka}}/?type={{ran.papka}}&title={{ran.title}}">{{ran.title}}</a>
|
|
{% endfor %}
|
|
{% else %}
|
|
<a href="">ошибка....</a>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
|
|
{% block places_dropdown %}
|
|
{% if random_places %}
|
|
{% for ran in random_places %}
|
|
<a href="/{{ran.papka}}/?type={{ran.papka}}&title={{ran.title}}">{{ran.title}}</a>
|
|
{% endfor %}
|
|
{% else %}
|
|
<a href="">ошибка....</a>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
|
|
{% block celebrity_dropdown %}
|
|
{% if random_celebrity %}
|
|
{% for ran in random_celebrity %}
|
|
<a href="/{{ran.papka}}/?type={{ran.papka}}&title={{ran.title}}">{{ran.title}}</a>
|
|
{% endfor %}
|
|
{% else %}
|
|
<a href="">ошибка....</a>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
|
|
{% block theaters_and_music_dropdown %}
|
|
{% if random_theaters_and_music %}
|
|
{% for ran in random_theaters_and_music %}
|
|
<a href="/{{ran.papka}}/?type={{ran.papka}}&title={{ran.title}}">{{ran.title}}</a>
|
|
{% endfor %}
|
|
{% else %}
|
|
<a href="">ошибка....</a>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block maincontent %}
|
|
<div style="margin-top: 40px;">
|
|
<label style="font-size: 40px;">Спасибо {{coms_name}}, ваш комментарий отправлен</label>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block js %}
|
|
<script src="{% static 'first/script.js' %}"></script>
|
|
{% endblock %} |