mirror of
https://github.com/hequan2017/seal.git
synced 2026-02-03 10:13:27 +08:00
88 lines
2.9 KiB
Python
88 lines
2.9 KiB
Python
{% load static %}
|
|
<script src="{% static "js/jquery-3.1.1.min.js" %}" type="text/javascript" ></script>
|
|
<script src="{% static "js/bootstrap.min.js" %}"></script>
|
|
<script src="{% static "js/plugins/metisMenu/jquery.metisMenu.js" %}"></script>
|
|
<script src="{% static "js/plugins/slimscroll/jquery.slimscroll.min.js" %}"></script>
|
|
|
|
<!-- Custom and plugin javascript -->
|
|
<script src="{% static "js/inspinia.js" %} "></script>
|
|
<script src="{% static "js/plugins/pace/pace.min.js" %}"></script>
|
|
|
|
|
|
<script src="{% static "js/datatables.min.js" %}"></script>
|
|
|
|
<script src="{% static "js/plugins/select2/select2.full.min.js" %}"></script>
|
|
|
|
<!-- Sweet alert -->
|
|
<script src="{% static "js/plugins/sweetalert/sweetalert.min.js" %}"></script>
|
|
|
|
|
|
|
|
|
|
<script type="text/JavaScript">
|
|
$.ajaxSetup({headers: {"X-CSRFToken": '{{ csrf_token }}'}});
|
|
</script>
|
|
|
|
|
|
<script>
|
|
|
|
$(document).ready(function () {
|
|
$('.dataTables-example').DataTable({
|
|
|
|
|
|
"oLanguage": {
|
|
"sLengthMenu": "每页显示 _MENU_ 条记录",
|
|
"sZeroRecords": "对不起,查询不到任何相关数据",
|
|
"sInfo": "当前显示 _START_ 到 _END_ 条,共 _TOTAL_条记录",
|
|
"sInfoEmtpy": "找不到相关数据",
|
|
"sInfoFiltered": " 数据表中共为 _MAX_ 条记录",
|
|
"sProcessing": "正在加载中...",
|
|
"sSearch": "搜索",
|
|
"oPaginate": {
|
|
"sFirst": "第一页",
|
|
"sPrevious": " 上一页 ",
|
|
"sNext": " 下一页 ",
|
|
"sLast": " 最后一页 "
|
|
}
|
|
},
|
|
dom: '<"html5buttons"B>lTfgitp,',
|
|
buttons: [ 'copy', 'csv', 'excel' ]
|
|
});
|
|
|
|
|
|
$('.dataTables-code').DataTable({
|
|
|
|
"oLanguage": {
|
|
"sLengthMenu": "每页显示 _MENU_ 条记录",
|
|
"sZeroRecords": "对不起,查询不到任何相关数据",
|
|
"sInfo": "当前显示 _START_ 到 _END_ 条,共 _TOTAL_条记录",
|
|
"sInfoEmtpy": "找不到相关数据",
|
|
"sInfoFiltered": " 数据表中共为 _MAX_ 条记录",
|
|
"sProcessing": "正在加载中...",
|
|
"sSearch": "搜索",
|
|
"oPaginate": {
|
|
"sFirst": "第一页",
|
|
"sPrevious": " 上一页 ",
|
|
"sNext": " 下一页 ",
|
|
"sLast": " 最后一页 "
|
|
}
|
|
},
|
|
bFilter: false,
|
|
"order": [[1, 'desc']],
|
|
"info": false,//是否显示页脚信息
|
|
destroy: true,
|
|
"ordering": false,
|
|
dom: '<"html5buttons"B>lTfgitp,',
|
|
buttons: [],
|
|
lengthMenu: [[-1], ["全部"]],
|
|
"paging": false, // 禁止分页
|
|
});
|
|
|
|
});
|
|
|
|
$(function () {
|
|
$(".select2").select2();
|
|
});
|
|
|
|
</script>
|