mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-02-03 02:43:14 +08:00
99 lines
3.7 KiB
Python
99 lines
3.7 KiB
Python
{% extends 'base-layer.html' %}
|
|
{% load staticfiles %}
|
|
{% block css %}
|
|
<link rel="stylesheet" href="{% static 'plugins/select2/select2.min.css' %}">
|
|
<!-- iCheck for checkboxes and radio inputs -->
|
|
{% endblock %}
|
|
{% block main %}
|
|
<div class="box box-danger">
|
|
<form class="form-horizontal" id="addForm" method="post">
|
|
<input type="hidden" name='id' type='text' value="{{ code.id }}"/>
|
|
{% csrf_token %}
|
|
<div class="box-body">
|
|
<fieldset>
|
|
<legend>
|
|
<h4>修改字典</h4>
|
|
</legend>
|
|
|
|
<div class="form-group has-feedback">
|
|
<label class="col-sm-2 control-label">KEY</label>
|
|
<div class="col-sm-3">
|
|
<input class="form-control" name="key" type="text" value="{{ code.key }}"/>
|
|
</div>
|
|
<label class="col-sm-2 control-label">VALUE</label>
|
|
<div class="col-sm-3">
|
|
<input class="form-control" name="value" type="text" value="{{ code.value }}"/>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group has-feedback">
|
|
<label class="col-sm-2 control-label">父菜单</label>
|
|
<div class="col-sm-3">
|
|
<select class="form-control select2" name="parent">
|
|
<option value={{ code.parent.id }}> {{ code.parent.value }} </option>
|
|
<option value=""></option>
|
|
{% for parent in code_parent %}
|
|
<option value={{ parent.id }}> {{ parent.value }} </option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
<label class="col-sm-2 control-label">描述信息</label>
|
|
<div class="col-sm-3">
|
|
<input class="form-control" id="desc" name="desc" type="text" />
|
|
</div>
|
|
</div>
|
|
|
|
</fieldset>
|
|
</div>
|
|
<div class="box-footer ">
|
|
<div class="row span7 text-center ">
|
|
<button type="button" id="btnCancel" class="btn btn-default margin-right ">重置</button>
|
|
<button type="button" id="btnSave" class="btn btn-info margin-right ">保存</button>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
{% block javascripts %}
|
|
<script src="{% static 'plugins/select2/select2.full.min.js' %}"></script>
|
|
<script type="text/javascript">
|
|
$("#btnSave").click(function () {
|
|
var data = $("#addForm").serialize();
|
|
$.ajax({
|
|
type: $("#addForm").attr('method'),
|
|
url: "{% url 'cmdb:portal-code-update' %}",
|
|
data: data,
|
|
cache: false,
|
|
success: function (msg) {
|
|
if (msg.result) {
|
|
layer.alert('数据保存成功!', {icon: 1}, function (index) {
|
|
parent.layer.closeAll(); //关闭所有弹窗
|
|
});
|
|
} else {
|
|
layer.alert(msg.error, {icon: 5});
|
|
//$('errorMessage').html(msg.message)
|
|
}
|
|
return;
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
/*点取消刷新新页面*/
|
|
$("#btnCancel").click(function () {
|
|
window.location.reload();
|
|
|
|
});
|
|
|
|
$(function () {
|
|
//Initialize Select2 Elements
|
|
$(".select2").select2();
|
|
});
|
|
|
|
</script>
|
|
|
|
{% endblock %} |