jumpserver/templates/jperm/sudo_cmd_detail.html

48 lines
1.7 KiB
HTML
Raw Normal View History

2015-04-09 03:27:36 +00:00
{% load mytags %}
<html>
<head>
{% include 'link_css.html' %}
<style type="text/css">
body
{
background: #FFFFFF;
}
</style>
</head>
<body>
<div class="row">
<div class="contact-box">
2015-04-15 04:07:59 +00:00
{% if cmd_group_name %}
2015-04-09 03:27:36 +00:00
<h2 class="text-center">{{ cmd_group.name }} 鍛戒护璇︽儏</h2>
2015-04-15 04:07:59 +00:00
{% endif %}
2015-04-09 03:27:36 +00:00
<div class="ibox-content">
<table class="table table-striped table-bordered table-hover " id="editable" >
2015-04-15 04:07:59 +00:00
{% if cmd_group_name %}
2015-04-09 03:27:36 +00:00
<thead>
<tr>
<td class="text-center" width="120">ID</td>
<td class="text-center">鍚嶇О</td>
<td class="text-center">閮ㄩ棬</td>
</tr>
</thead>
<tbody>
<tr class="gradeX">
<td class="text-center">{{ cmd_group.id }}</td>
<td class="text-center">{{ cmd_group.name }}</td>
<td class="text-center">{{ cmd_group.dept.name }}</td>
</tr>
2015-04-15 04:07:59 +00:00
{% endif %}
2015-04-09 03:27:36 +00:00
<tr>
<td colspan="1" class="text-center">鍛戒护锛</td>
<td colspan="6" class="text-center">
2015-04-15 04:07:59 +00:00
<b>{{ cmds_str }}</b>
2015-04-09 03:27:36 +00:00
</td>
</tr>
</table>
</div>
</div>
</body>
</html>