{% load static %} {% load i18n %} {% get_current_language as LANGUAGE_CODE %} {% comment %} This template include basic anf main styles and js files, block with header and footer, which same in all pages, register, login, search popups blocks for add or change: title(title), styles(style), header(header), footer(footer) banners(header_banner), scripts(script), popups(popup) and blocks: main_part, top, search, catalog, announces, partners, services head with title block, style block {% endcomment %} {% include 'includes/meta.html' %} {% block styles %} {% endblock %}
{% block header %} {% include 'header.html' %} {% endblock %} {% block main_part %} {% endblock %} {% block top %} {% endblock %} {% block search %} {% endblock %} {% block catalog %} {% endblock %} {% block announces %} {% endblock %} {% block partners %} {% endblock %} {% block services %} {% endblock %} {% block footer %} {% include 'footer.html' %} {% endblock %}
{% if not user.is_authenticated %} {% include 'client/popups/login.html' %} {% include 'client/popups/register.html' %} {% include 'client/popups/reg_send.html' %} {% endif %} {% include 'client/popups/callback.html' %} {# if user doesnt have url- show form #} {% if not request.user.is_anonymous %} {% if not request.user.url %} {% include 'client/popups/user_information.html' with form=reg_complete %} {% endif %} {% endif %} {% block popup %} {% endblock %}
{% block photogallery %} {% endblock %}