mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-02-13 15:44:57 +08:00
96 lines
3.5 KiB
Python
96 lines
3.5 KiB
Python
{% extends 'base-layer.html' %}
|
|
{% load staticfiles %}
|
|
|
|
{% block css %}
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="box box-danger">
|
|
<form class="form-horizontal" id="addForm" method="post">
|
|
{% csrf_token %}
|
|
<input type="hidden" name='id' value="{{ user.id }}"/>
|
|
<input type="hidden" name='user' value="save"/>
|
|
<div class="box-body">
|
|
<fieldset>
|
|
<legend>
|
|
<h4>基本信息</h4>
|
|
</legend>
|
|
<div class="form-group has-feedback">
|
|
<label class="col-sm-2 control-label">姓名</label>
|
|
<div class="col-sm-3">
|
|
<input class="form-control" name="name" type="text" readonly="readonly"
|
|
value="{{ user.name }}"/>
|
|
</div>
|
|
<label class="col-sm-2 control-label">用户名</label>
|
|
<div class="col-sm-3">
|
|
<input type="text" class="form-control" name="username" readonly="readonly"
|
|
value="{{ user.username }}"/>
|
|
</div>
|
|
</div>
|
|
|
|
<h4>密码信息</h4>
|
|
</legend>
|
|
<div class="form-group has-feedback">
|
|
<label class="col-sm-2 control-label">密码</label>
|
|
<div class="col-sm-3">
|
|
<input class="form-control" name="password" type="password" value=""/>
|
|
</div>
|
|
<label class="col-sm-2 control-label">确认密码</label>
|
|
<div class="col-sm-3">
|
|
<input class="form-control" name="confirm_password" type="password" value=""/>
|
|
</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/combo-select/jquery.combo.select.js' %}"></script>
|
|
<script src="{% static 'bootstrap/js/bootstrap-datetimepicker.js' %}"></script>
|
|
<script type="text/javascript">
|
|
|
|
$("#btnSave").click(function () {
|
|
var data = $("#addForm").serialize();
|
|
$.ajax({
|
|
type: $("#addForm").attr('method'),
|
|
url: "{% url 'system:basic-user-password_change' %}",
|
|
data: data,
|
|
cache: false,
|
|
success: function (msg) {
|
|
if (msg.status == 'success') {
|
|
layer.alert('密码修改成功!', {icon: 1}, function (index) {
|
|
parent.layer.closeAll();
|
|
});
|
|
} else if (msg.status == 'fail') {
|
|
layer.alert(msg.password_change_form_errors, {icon: 5});
|
|
//$('errorMessage').html(msg.message)
|
|
}
|
|
return;
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
/*点取消刷新页面*/
|
|
$("#btnCancel").click(function () {
|
|
window.location.reload();
|
|
|
|
})
|
|
|
|
|
|
</script>
|
|
|
|
{% endblock %}
|