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.

122 lines
4.5 KiB

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="renderer" content="webkit">
<meta name="referrer" content="always">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> </title>
{% load static %}
{% block js %}
<link href="{% static 'css/bootstrap.min.css' %}" rel="stylesheet">
<link href="{% static 'css/font-awesome.css' %}" rel="stylesheet">
<link href="{% static 'css/plugins/datapicker/datepicker3.css' %}" rel="stylesheet" />
<link href="{% static 'css/plugins/summernote/summernote.css' %}" rel="stylesheet" />
<link href="{% static 'css/plugins/summernote/summernote-bs3.css' %}" rel="stylesheet" />
<link href="{% static 'plugins/virtualkeyboard/virtualkeyboard.css' %}" rel="stylesheet" />
<!-- Gritter -->
<link href="{% static 'js/plugins/gritter/jquery.gritter.css' %}" rel="stylesheet">
<!-- 全局js -->
<script src="{% static 'Scripts/jquery-1.10.2.min.js' %}"></script>
<script src="{% static 'js/bootstrap.min.js' %}"></script>
<script src="{% static 'js/plugins/jasny/jasny-bootstrap.min.js' %}"></script>
<!-- Data Tables -->
<link href="{% static 'css/plugins/dataTables/dataTables.bootstrap.min.css' %}" rel="stylesheet" />
<link href="{% static 'css/plugins/dataTables/select.bootstrap.min.css' %}" rel="stylesheet" />
<script src="{% static 'js/plugins/dataTables/jquery.dataTables.min.js' %}"></script>
<script src="{% static 'js/plugins/dataTables/dataTables.bootstrap.min.js' %}"></script>
<script src="{% static 'js/plugins/dataTables/dataTables.select.min.js' %}"></script>
<script src="{% static 'plugins/virtualkeyboard/virtualkeyboard.js' %}"></script>
<!-- 自定义js -->
<script src="{% static '/js/content.js' %}"></script>
<!-- Switchery -->
<link href="{% static 'css/plugins/switchery/switchery.css' %}" rel="stylesheet" />
<script src="{% static 'js/plugins/switchery/switchery.js' %}"></script>
<!-- Chosen -->
<link href="{% static 'css/plugins/chosen/chosen.css' %}" rel="stylesheet" />
<script src="{% static 'js/plugins/chosen/chosen.jquery.js' %}"></script>
<!-- layer -->
<script src="{% static 'js/plugins/layer/layer.min.js' %}"></script>
<!-- jQuery Form -->
<script src="{% static 'js/plugins/layer/layer.min.js' %}"></script>
<script src="{% static 'js/plugins/form/jquery.form.min.js' %}"></script>
<!-- jQuery UI -->
<script src="{% static 'js/plugins/jquery-ui/jquery-ui.min.js' %}"></script>
<script src="{% static 'js/utils.js' %}"></script>
<link href="{% static 'css/animate.css' %}" rel="stylesheet">
<link href="{% static 'css/style.css' %}" rel="stylesheet">
<link rel="stylesheet" href="{% static 'layuiadmin/layui/css/layui.css' %}" media="all">
<link rel="stylesheet" href="{% static 'layuiadmin/style/admin.css' %}" media="all">
<script src="{% static 'layuiadmin/layui/layui.all.js' %}"></script>
<!-- 导入阿里巴巴矢量图标css -->
<link rel="stylesheet" href="{% static 'css/plugins/icon/iconfont.css' %}">
<!-- 导入弹窗插件flavr -->
<link rel="stylesheet" href="/static/flavr/style.css">
<link rel="stylesheet" href="/static/flavr/animate.css">
<link rel="stylesheet" href="/static/flavr/flavr.css">
<script src="/static/flavr/flavr.min.js"></script>
{% endblock %}
<style>
.refresh-animation {
-webkit-animation: rotate 1.2s linear infinite; /*Safari and Chrome*/
}
@keyframes rotate {
0%{
transform:rotate(0deg);
-ms-transform:rotate(0deg); /* IE 9 */
-moz-transform:rotate(0deg); /* Firefox */
-o-transform:rotate(0deg);
}
100% {
transform:rotate(360deg);
-ms-transform:rotate(360deg); /* IE 9 */
-moz-transform:rotate(360deg); /* Firefox */
-o-transform:rotate(360deg);
}
}
@-webkit-keyframes rotate {
0%{
-moz-transform:rotate(0deg);
}
100%{
-moz-transform:rotate(360deg);
}
}
</style>
{% block css_ %}
{% endblock %}
<!-- <script>
document.oncontextmenu=new Function('return false'); // 禁用谷歌浏览器鼠标右键
</script> -->
</head>
<body class="gray-bg">
{% block content %}
{% endblock %}
</body>
<script>
// 通用js方法
function format_sqlAlchemy_date(params) {
if(params){
return params.replace('T', ' ')
}
}
</script>
</html>