|
|
|
@ -15,6 +15,7 @@
|
|
|
|
|
<th class="text-center">{% trans 'User' %}</th>
|
|
|
|
|
<th class="text-center">{% trans 'User group' %}</th>
|
|
|
|
|
<th class="text-center">{% trans 'RemoteApp' %}</th>
|
|
|
|
|
<th class="text-center">{% trans 'System user' %}</th>
|
|
|
|
|
<th class="text-center">{% trans 'Validity' %}</th>
|
|
|
|
|
<th class="text-center">{% trans 'Action' %}</th>
|
|
|
|
|
</tr>
|
|
|
|
@ -49,13 +50,17 @@ function initTable() {
|
|
|
|
|
$(td).html(num);
|
|
|
|
|
}},
|
|
|
|
|
{targets: 5, createdCell: function (td, cellData, rowData) {
|
|
|
|
|
var num = cellData.length;
|
|
|
|
|
$(td).html(num);
|
|
|
|
|
}},
|
|
|
|
|
{targets: 6, createdCell: function (td, cellData, rowData) {
|
|
|
|
|
if (!cellData) {
|
|
|
|
|
$(td).html('<i class="fa fa-times text-danger"></i>')
|
|
|
|
|
} else {
|
|
|
|
|
$(td).html('<i class="fa fa-check text-navy"></i>')
|
|
|
|
|
}
|
|
|
|
|
}},
|
|
|
|
|
{targets: 6, createdCell: function (td, cellData, rowData) {
|
|
|
|
|
{targets: 7, createdCell: function (td, cellData, rowData) {
|
|
|
|
|
var update_btn = '<a href="{% url "perms:remote-app-permission-update" pk=DEFAULT_PK %}" class="btn btn-xs btn-info">{% trans "Update" %}</a>'.replace("{{ DEFAULT_PK }}", cellData);
|
|
|
|
|
var del_btn = '<a class="btn btn-xs btn-danger m-l-xs btn-delete" data-rid="{{ DEFAULT_PK }}">{% trans "Delete" %}</a>'.replace('{{ DEFAULT_PK }}', cellData);
|
|
|
|
|
$(td).html(update_btn + del_btn)
|
|
|
|
@ -68,6 +73,7 @@ function initTable() {
|
|
|
|
|
{data: "users", orderable: false},
|
|
|
|
|
{data: "user_groups", orderable: false},
|
|
|
|
|
{data: "remote_apps", orderable: false},
|
|
|
|
|
{data: "system_users", orderable: false},
|
|
|
|
|
{data: "is_valid", orderable: false},
|
|
|
|
|
{data: "id", orderable: false}
|
|
|
|
|
],
|
|
|
|
|