Blame view
templates/homepage/homepage_base.html
3.73 KB
|
f96567709
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
{% extends "account/../base.html" %}
{% load staticfiles %}
{% block css %}
<link rel="stylesheet" href="{% static "bootstrap/css/bootstrap.min.css" %}">
<link rel="stylesheet" href="{% static "css/font-awesome.min.css" %}">
<link rel="stylesheet" href="{% static "dist/css/AdminLTE.min.css" %}">
<link rel="stylesheet" href="{% static "dist/css/skins/_all-skins.min.css" %}">
<link rel="stylesheet" href="{% static "plugins/iCheck/flat/blue.css" %}">
<link rel="stylesheet" href="{%static "css/ionicons.min.css" %}">
<link rel="stylesheet" href="{% static "plugins/datatables/dataTables.bootstrap.css" %}">
<link rel="stylesheet" href="{% static "css/select2.min.css"%}">
<link rel="stylesheet" href="{% static "css/style.css"%}">
<link rel="stylesheet" href="{% static "plugins/datepicker/datepicker.css"%}">
<link rel="stylesheet" href="{% static "plugins/datatables/extensions/Responsive/2.0.2/css/responsive.dataTable.min.css" %}">
<link rel="stylesheet" href="{% static "plugins/datetimepicker/v3/bootstrap-datetimepicker.min.css" %}">
<link rel="stylesheet" href="{% static "plugins/datatables/extensions/ColVis/css/dataTables.colVis.min.css" %}">
<style>
.small-box {
margin-bottom: 0
}
.head-box {
min-height: 100px;
}
.theme-panel {
width: 400px;
right: -400px;
}
.theme-panel .theme-collapse-btn {
left: -50px;
top: 17%;
margin-top: -30px;
width: 50px;
height: 50px;
line-height: 50px;
font-size: 30px;
}
.hide {
display: none;
}
</style>
{% block subcss %}
{% endblock %}
{% endblock %}
{% block content %}
<div class="fakeloader"></div>
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
服务台
</h1>
<ol class="breadcrumb">
<li class="active"><a href="/"><i class="fa fa-dashboard"></i> 首页</a></li>
<li>服务台</li>
</ol>
</section>
<!-- Main content -->
<section class="content">
<!-- Small boxes (Stat box) -->
<div class="row">
<div class="col-xs-12">
{% block subcontent %}
{% endblock %}
</div> <!-- /col-xs-12 -->
</div>
</section><!-- /.content -->
</div><!-- /.content-wrapper -->
<!-- begin theme-panel -->
<!-- end theme-panel -->
{% endblock %}
{% block js%}
<script src="{% static "js/jquery-ui.min.js" %}"></script>
<script src="{%static "bootstrap/js/bootstrap.min.js" %}"></script>
<script src="{%static "dist/js/app.min.js" %}"></script>
<script src="{% static "plugins/datatables/jquery.dataTables.min.js" %}"></script>
<script src="{% static "plugins/datatables/dataTables.bootstrap.min.js" %}"></script>
<script src="{% static "js/popModal.js" %}"></script>
<script src="{% static "js/myqccr.js" %}"></script>
<script src="{% static "plugins/datepicker/bootstrap-datepicker.js" %}"></script>
<script src="{% static "plugins/datetimepicker/bootstrap-datetimepicker.min.js" %}"></script>
<script src="{% static "plugins/datatables/extensions/Responsive/js/dataTables.responsive.min.js" %}"></script>
<script src="{% static "js/select2.min.js" %}"></script>
<script src="{% static "js/jquery.Qalert.js" %}"></script>
<script type="text/javascript">
// $('select').select2();
$("#servicedeskmenu").addClass("active");
</script>
{% block subjs %}
{% endblock %}
{% endblock %}
|