2019-07-25 15:25:27 +08:00
|
|
|
{% extends 'app_admin/admin_base.html' %}
|
2020-10-18 08:05:41 +08:00
|
|
|
{% load static %}
|
2020-12-02 21:25:59 +08:00
|
|
|
{% load i18n %}
|
2019-07-25 15:25:27 +08:00
|
|
|
{% block title %}文档模板管理{% endblock %}
|
|
|
|
{% block content %}
|
2020-11-16 21:32:08 +08:00
|
|
|
<div class="layui-card">
|
|
|
|
<div class="layui-card-body">
|
|
|
|
<div class="layui-card-header" style="margin-bottom: 10px;">
|
|
|
|
<div class="layui-row">
|
|
|
|
<span style="font-size:18px;">文档模板管理
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="layui-row">
|
|
|
|
<form action="{% url 'doctemp_manage' %}" method="get">
|
|
|
|
<div class="layui-form-item">
|
|
|
|
<div class="layui-input-inline">
|
|
|
|
<input type="text" name="kw" id="kw" placeholder="输入文档模板内容" autocomplete="off" class="layui-input">
|
|
|
|
</div>
|
2021-02-15 17:22:14 +08:00
|
|
|
<button class="pear-btn pear-btn-primary pear-btn-sm" type="submit"><i class="layui-icon layui-icon-search"></i>搜索</button>
|
|
|
|
<a href="{% url 'create_doctemp' %}" target="_blank" class="pear-btn pear-btn-primary pear-btn-sm"><i class="layui-icon layui-icon-addition"></i>新建文档模板</a>
|
2019-07-25 15:25:27 +08:00
|
|
|
</div>
|
2020-11-16 21:32:08 +08:00
|
|
|
</form>
|
2019-07-25 15:25:27 +08:00
|
|
|
</div>
|
2020-11-16 21:32:08 +08:00
|
|
|
<div class="layui-row">
|
|
|
|
<table class="layui-table" id="doctemp-list" lay-skin="nob" lay-even>
|
|
|
|
<colgroup>
|
|
|
|
<col width="200">
|
|
|
|
<col width="200">
|
|
|
|
<col>
|
|
|
|
</colgroup>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>模板名称</th>
|
|
|
|
<th>创建人</th>
|
|
|
|
<th>创建时间</th>
|
|
|
|
<th>操作</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for temp in doctemps %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ temp.name }}</td>
|
|
|
|
<td>{{ temp.create_user }}</td>
|
|
|
|
<td>{{ temp.create_time }}</td>
|
|
|
|
<td>
|
2021-02-15 17:22:14 +08:00
|
|
|
<a href="{% url 'modify_doctemp' doctemp_id=temp.id %}" target="_blank" class="pear-btn pear-btn-primary pear-btn-xs">
|
2020-11-16 21:32:08 +08:00
|
|
|
<i class="layui-icon layui-icon-edit"></i>修改
|
|
|
|
</a>
|
2021-02-15 17:22:14 +08:00
|
|
|
<a href="javascript:void(0);" onclick="delTemp('{{temp.id}}');" class="pear-btn pear-btn-danger pear-btn-xs">
|
2020-11-16 21:32:08 +08:00
|
|
|
<i class="layui-icon layui-icon-delete"></i>删除
|
2020-04-06 17:36:04 +08:00
|
|
|
</a>
|
2020-11-16 21:32:08 +08:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<!-- 分页 -->
|
|
|
|
<div class="layui-row">
|
|
|
|
<div class="layui-box layui-laypage layui-laypage-default">
|
|
|
|
<!-- 上一页 -->
|
|
|
|
{% if doctemps.has_previous %}
|
|
|
|
<a href="?page={{ doctemps.previous_page_number }}&kw={{doctemps.kw}}" class="layui-btn layui-btn-xs layui-btn-normal">上一页</a>
|
|
|
|
{% else %}
|
|
|
|
<a href="javascript:;" class="layui-btn layui-btn-xs layui-btn-disabled">上一页</a>
|
|
|
|
{% endif %}
|
|
|
|
<!-- 当前页 -->
|
|
|
|
<span class="layui-laypage-curr">
|
|
|
|
<em class="layui-laypage-em"></em>
|
|
|
|
<em>{{ doctemps.number }}/{{ doctemps.paginator.num_pages }}</em>
|
|
|
|
</span>
|
|
|
|
<!-- 下一页 -->
|
|
|
|
{% if doctemps.has_next %}
|
|
|
|
<a href="?page={{ doctemps.next_page_number }}&kw={{doctemps.kw}}" class="layui-btn layui-btn-xs layui-btn-normal">下一页</a>
|
|
|
|
{% else %}
|
|
|
|
<a class="layui-btn layui-btn-xs layui-btn-disabled">下一页</a>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2019-07-25 15:25:27 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-11-16 21:32:08 +08:00
|
|
|
</div>
|
2019-07-25 15:25:27 +08:00
|
|
|
{% endblock %}
|
|
|
|
{% block custom_script %}
|
|
|
|
<script>
|
2020-11-16 21:32:08 +08:00
|
|
|
layui.use(['table','jquery','form','layer','element'], function() {
|
|
|
|
let table = layui.table;
|
|
|
|
let form = layui.form;
|
|
|
|
let $ = layui.jquery;
|
|
|
|
let layer = layui.layer;
|
|
|
|
let element = layui.element;
|
|
|
|
$.ajaxSetup({
|
|
|
|
data: {csrfmiddlewaretoken: '{{ csrf_token }}' },
|
2019-07-25 15:25:27 +08:00
|
|
|
});
|
2020-11-16 21:32:08 +08:00
|
|
|
delTemp = function(doctemp_id){
|
|
|
|
layer.open({
|
|
|
|
type:1,
|
|
|
|
title:'删除文档',
|
|
|
|
area:'300px;',
|
|
|
|
id:'delPro',//配置ID
|
|
|
|
content:'<div style="margin-left:10px;">警告:此操作将删除此文档模板!</div>',
|
|
|
|
btn:['确定','取消'], //添加按钮
|
|
|
|
btnAlign:'c', //按钮居中
|
|
|
|
yes:function (index,layero) {
|
|
|
|
layer.load(1);
|
|
|
|
data = {
|
|
|
|
'doctemp_id':doctemp_id,
|
|
|
|
}
|
|
|
|
$.post("{% url 'del_doctemp' %}",data,function(r){
|
|
|
|
layer.closeAll('loading');
|
|
|
|
if(r.status){
|
|
|
|
//修改成功
|
|
|
|
window.location.reload();
|
|
|
|
//layer.close(index)
|
|
|
|
}else{
|
|
|
|
//修改失败,提示
|
|
|
|
console.log(r)
|
|
|
|
layer.msg(r.data)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})
|
2019-07-25 15:25:27 +08:00
|
|
|
</script>
|
|
|
|
{% endblock %}
|