jumpserver/templates/jperm/perm_role_add.html

122 lines
5.9 KiB
HTML
Raw Normal View History

2015-11-14 13:52:09 +00:00
{% extends 'base.html' %}
{% block self_head_css_js %}
2015-11-26 15:26:11 +00:00
<link href="/static/css/plugins/datepicker/datepicker3.css" rel="stylesheet">
2015-11-14 13:52:09 +00:00
<link href="/static/css/plugins/chosen/chosen.css" rel="stylesheet">
<script src="/static/js/plugins/chosen/chosen.jquery.js"></script>
{% endblock %}
{% load mytags %}
{% block content %}
{% include 'nav_cat_bar.html' %}
<div class="wrapper wrapper-content animated fadeInRight">
<div class="row">
<div class="col-lg-10">
<div class="ibox float-e-margins">
<div class="ibox-title">
<h5>填写基本信息</h5>
<div class="ibox-tools">
<a class="collapse-link">
<i class="fa fa-chevron-up"></i>
</a>
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
<i class="fa fa-wrench"></i>
</a>
<a class="close-link">
<i class="fa fa-times"></i>
</a>
</div>
</div>
<div class="ibox-content">
2015-11-25 06:59:57 +00:00
<form method="post" id="roleForm" class="form-horizontal" action="">
2015-11-14 13:52:09 +00:00
{% if error %}
<div class="alert alert-warning text-center">{{ error }}</div>
{% endif %}
{% if msg %}
<div class="alert alert-success text-center">{{ msg }}</div>
{% endif %}
<div class="form-group">
2015-11-24 04:03:38 +00:00
<label for="role_name" class="col-sm-2 control-label">角色名称<span class="red-fonts">*</span></label>
2015-11-14 13:52:09 +00:00
<div class="col-sm-8">
2015-11-16 05:49:39 +00:00
<input id="role_name" name="role_name" placeholder="Role Name" type="text" class="form-control">
</div>
</div>
<div class="hr-line-dashed"></div>
<div class="form-group">
2015-11-25 06:59:57 +00:00
<label for="role_password" class="col-sm-2 control-label">角色密码</label>
2015-11-16 05:49:39 +00:00
<div class="col-sm-8">
2015-11-25 06:59:57 +00:00
<input id="role_password" name="role_password" placeholder="Role Password" type="password" class="form-control">
<span class="help-block m-b-none">如果不添加密码,会自动生成</span>
</div>
</div>
<div class="form-group">
<label for="role_key" class="col-sm-2 control-label">角色密钥</label>
<div class="col-sm-8">
<textarea class="form-control" name="role_key" placeholder="请复制粘贴私钥" rows="10" style="font-size: 9px;"></textarea>
<span class="help-block m-b-none">如果不添加密钥,会自动生成, 密码密钥必填一项</span>
2015-11-14 13:52:09 +00:00
</div>
</div>
<div class="hr-line-dashed"></div>
<div class="form-group">
<label for="sudo" class="col-sm-2 control-label">角色Sudo命令<span class="red-fonts">*</span></label>
<div class="col-sm-8" id="sudo_name">
<select name="sudo_name" data-placeholder="请选择Sudo别名" class="chosen-select form-control m-b" multiple tabindex="2">
{% for sudo in sudos %}
<option >{{ sudo.name }}</option>
{% endfor %}
</select>
</div>
</div>
<div class="hr-line-dashed"></div>
2015-11-14 13:52:09 +00:00
<div class="form-group">
<label for="role_comment" class="col-sm-2 control-label">备注</label>
<div class="col-sm-8">
2015-11-16 05:49:39 +00:00
<input id="role_comment" name="role_comment" placeholder="Role Comment" type="text" class="form-control">
2015-11-14 13:52:09 +00:00
</div>
</div>
<div class="hr-line-dashed"></div>
<div class="form-group">
<div class="col-sm-4 col-sm-offset-2">
<button class="btn btn-white" type="reset">取消</button>
<button id="submit_button" class="btn btn-primary" type="submit">确认保存</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
{% endblock %}
{% block self_footer_js %}
<script>
2015-11-25 06:59:57 +00:00
$('#roleForm').validator({
timely: 2,
theme: "yellow_right_effect",
rules: {
check_name: [/^\w{2,20}$/, '大小写字母数字和下划线,2-20位'],
either: function(){
return $('#role_password').val() == ''
2015-11-14 13:52:09 +00:00
}
2015-11-25 06:59:57 +00:00
},
2015-11-14 13:52:09 +00:00
2015-11-25 06:59:57 +00:00
fields: {
"role_name": {
rule: "required;check_name",
tip: "输入角色名称",
ok: "",
msg: {required: "角色名称必填"}
},
"role_key": {
rule: "required(either)",
tip: "输入密钥",
ok: "",
msg: {required: "密码和密钥必填一个!"}
2015-11-14 13:52:09 +00:00
}
2015-11-25 06:59:57 +00:00
},
valid: function(form) {
form.submit();
2015-11-14 13:52:09 +00:00
}
2015-11-25 06:59:57 +00:00
})
2015-11-14 13:52:09 +00:00
</script>
{% endblock %}