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.
106 lines
3.4 KiB
106 lines
3.4 KiB
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title> {% block title %}Admin EXPOMAP {% endblock %}</title>
|
|
|
|
<script src="{% static 'jquery/jquery.min.js' %}"></script>
|
|
<script src="{% static 'bootstrap/js/bootstrap.min.js' %}"></script>
|
|
|
|
<link rel="stylesheet" href="{% static 'bootstrap/css/bootstrap.min.css' %} ">
|
|
|
|
{# css harizma #}
|
|
<link id="bs-css" href="{% static 'css/bootstrap-cerulean.css' %}" rel="stylesheet">
|
|
<link href="{% static 'css/bootstrap-responsive.css' %}" rel="stylesheet">
|
|
<link href="{% static 'css/charisma-app.css' %}" rel="stylesheet">
|
|
<link href="{% static 'css/jquery-ui-1.8.21.custom.css' %}" rel="stylesheet">
|
|
<link href="{% static 'css/fullcalendar.css' %}" rel='stylesheet'>
|
|
<link href="{% static 'css/fullcalendar.print.css' %}" rel='stylesheet' media='print'>
|
|
<link href="{% static 'css/chosen.css' %}" rel='stylesheet'>
|
|
<link href="{% static 'css/uniform.default.css' %}" rel='stylesheet'>
|
|
<link href="{% static 'css/colorbox.css' %}" rel='stylesheet'>
|
|
<link href="{% static 'css/jquery.cleditor.css' %}" rel='stylesheet'>
|
|
<link href="{% static 'css/jquery.noty.css' %}" rel='stylesheet'>
|
|
<link href="{% static 'css/noty_theme_default.css' %}" rel='stylesheet'>
|
|
<link href="{% static 'css/elfinder.min.css' %}" rel='stylesheet'>
|
|
<link href="{% static 'css/elfinder.theme.css' %}" rel='stylesheet'>
|
|
<link href="{% static 'css/jquery.iphone.toggle.css' %}" rel='stylesheet'>
|
|
<link href="{% static 'css/opa-icons.css' %}" rel='stylesheet'>
|
|
<link href="{% static 'css/uploadify.css' %}" rel='stylesheet'>
|
|
|
|
{# select2 #}
|
|
{% block select2 %}
|
|
<link href="{% static 'js/select/select2.css' %}" rel="stylesheet"/>
|
|
<script src="{% static 'js/select/select2.js' %}"></script>
|
|
{% endblock select2 %}
|
|
{# The fav icon #}
|
|
<link rel="shortcut icon" href="{% static 'img/favicon.ico' %}">
|
|
{# datetimepicker #}
|
|
<link href="{% static 'js/datetimepicker/css/datetimepicker.css' %}" rel="stylesheet"/>
|
|
<script src="{% static 'js/datetimepicker/js/bootstrap-datetimepicker.js' %}"></script>
|
|
<script src="{% static 'js/datetimepicker/js/locales/bootstrap-datetimepicker.ru.js' %}"></script>
|
|
|
|
{% block main_js_exlude %}
|
|
<script src="{% static 'custom_js/main.js' %}"></script>
|
|
{% endblock main_js_exlude %}
|
|
|
|
{% block extrastyle %}
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
{% endblock %}
|
|
|
|
{% block extrahead %}
|
|
{% endblock %}
|
|
|
|
<style>
|
|
.box {
|
|
margin-left: 0px;
|
|
}
|
|
|
|
#content{
|
|
|
|
}
|
|
#navigation{
|
|
margin-top: 10px;
|
|
}
|
|
.dropdown-menu{
|
|
margin-bottom: 20px;
|
|
}
|
|
textarea.cke_source{
|
|
|
|
white-space: pre-line;
|
|
}
|
|
|
|
div.controls input[type="text"] {
|
|
width: 94%;
|
|
}
|
|
|
|
{% block styles %}
|
|
{% endblock %}
|
|
</style>
|
|
|
|
</head>
|
|
<body style="padding-top: 30px" class="{% block bodyclass %}{% endblock %}">
|
|
{# Side navigation #}
|
|
{% block sidebar %}
|
|
{% if user.is_superuser %}
|
|
{% include 'c_admin/includes/admin_nav.html' %}
|
|
{% else %}
|
|
{% include 'c_admin/includes/staff_nav.html' %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
|
|
<div class="span{% block span_num %}7{% endblock %} offset1" id="content" >
|
|
{# Main content #}
|
|
{% block body %}
|
|
|
|
{% endblock %}
|
|
</div>
|
|
|
|
</body>
|
|
|
|
{% block bot_scripts %}
|
|
{% endblock %}
|
|
</html>
|
|
|