mirror of https://github.com/jumpserver/jumpserver
update
parent
61eadf6891
commit
f437d3f883
|
@ -60,7 +60,7 @@
|
|||
<td><b>{{ asset.admin_user.name }}</b></td>
|
||||
{% else %}
|
||||
<td><b>None</b></td>
|
||||
{% endbif %}
|
||||
{% endif %}
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{% trans 'Other IP' %}:</td>
|
||||
|
|
|
@ -283,9 +283,10 @@ jumpserver.initDataTable = function (options) {
|
|||
var ele = options.ele || $('.dataTable');
|
||||
var columnDefs = [
|
||||
{
|
||||
targets: 0, orderable: false,
|
||||
targets: 0,
|
||||
orderable: false,
|
||||
createdCell: function(td) {
|
||||
$(td).html('<div class="checkbox checkbox-default"><input type="checkbox" class="ipt_check"><label></label></div>');
|
||||
$(td).html('<input type="checkbox" class="ipt_check">');
|
||||
}
|
||||
},
|
||||
{className: 'text-center', targets: '_all'}
|
||||
|
|
|
@ -21,7 +21,8 @@ div.dataTables_wrapper div.dataTables_filter {
|
|||
<thead>
|
||||
<tr>
|
||||
<th class="text-center">
|
||||
<div class="checkbox checkbox-default"><input id="" type="checkbox" class="ipt_check_all"><label></label></div>
|
||||
{# <div><input id="" type="checkbox" class="ipt_check_all"><label></label></div>#}
|
||||
<input id="" type="checkbox" class="ipt_check_all">
|
||||
</th>
|
||||
<th class="text-center">{% trans 'Name' %}</th>
|
||||
<th class="text-center">{% trans 'Username' %}</th>
|
||||
|
|
Loading…
Reference in New Issue