You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.5 KiB
76 lines
2.5 KiB
{# spaceless #}<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<title>{% block title %}{% endblock %} | Документор</title>
|
|
<link rel="shortcut icon" href="{{ STATIC_URL }}favicon.ico" />
|
|
<link rel="stylesheet" href="{{ STATIC_URL }}css/ui-lightness/jquery-ui-1.10.3.custom.css" />
|
|
<link rel="stylesheet" href="{{ STATIC_URL }}css/style.css" />
|
|
</head>
|
|
<body>
|
|
|
|
{% if messages %}
|
|
<div id="content" class="clear">
|
|
<ul class="messagelist">
|
|
{% for message in messages %}
|
|
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div style="margin: 10px 0; height: 30px;">
|
|
<div style="float: left; font-weight: bold; font-size: 22px;">
|
|
<a href="/">Документор</a>
|
|
</div>
|
|
|
|
{% if user.is_authenticated %}
|
|
<div style="float: right; margin-right: 10px;">
|
|
<a href="{% url 'customer_index' %}" style="margin-right: 10px">Личный кабинет</a>
|
|
|
|
|
<a href="{% url 'auth_logout' %}">Выход</a>
|
|
</div>
|
|
{% else %}
|
|
<div style="float: right; margin-right: 10px;">
|
|
<a href="{% url 'myauth_register' %}" style="margin-right: 10px">Регистрация и цены</a>
|
|
|
|
|
<a href="{% url 'myauth_login' %}">Вход</a>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
|
|
{% block top_menu %}{% endblock %}
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
{% block footer %}{% endblock %}
|
|
|
|
<div id="dialogs">
|
|
{% block dialogs %}{% endblock %}
|
|
</div>
|
|
|
|
<div id="dialog-message"></div>
|
|
|
|
{% block common_js %}
|
|
<script src="{{ STATIC_URL }}js/lib/jquery-1.10.2.min.js"></script>
|
|
<script src="{{ STATIC_URL }}js/lib/jquery-ui-1.10.3.custom.min.js"></script>
|
|
<script src="{{ STATIC_URL }}js/lib/jquery.ui.datepicker-ru.js"></script>
|
|
<script src="{{ STATIC_URL }}js/lib/jquery.form.js"></script>
|
|
<script src="{{ STATIC_URL }}js/formset-events.js"></script>
|
|
<script src="{{ STATIC_URL }}js/lib/jquery.formset.js"></script>
|
|
<script src="{{ STATIC_URL }}js/lib/jquery.blockUI.js"></script>
|
|
<script src="{{ STATIC_URL }}js/lib/entertotab.js"></script>
|
|
|
|
<script src="{{ STATIC_URL }}js/csrf.js"></script>
|
|
|
|
<script src="{{ STATIC_URL }}js/commons.js"></script>
|
|
<script src="{{ STATIC_URL }}js/dialogs.js"></script>
|
|
{% include 'autocomplete_light/static.html' %}
|
|
{% endblock %}
|
|
|
|
{% block js %}{% endblock %}
|
|
|
|
</body>
|
|
</html>{# endspaceless #}
|
|
|