summaryrefslogtreecommitdiffstats
path: root/modules-available/permissionmanager/templates/rolestable.html
diff options
context:
space:
mode:
authorChristian Hofmaier2017-09-29 13:36:54 +0200
committerChristian Hofmaier2017-09-29 13:36:54 +0200
commit5f6e43734d8fb60b74e47b91f81adac41ae69597 (patch)
tree1189b1fc32890ace80e76dedd6b904f56c932c99 /modules-available/permissionmanager/templates/rolestable.html
parent[statistics] fixed inconsistencies (diff)
downloadslx-admin-5f6e43734d8fb60b74e47b91f81adac41ae69597.tar.gz
slx-admin-5f6e43734d8fb60b74e47b91f81adac41ae69597.tar.xz
slx-admin-5f6e43734d8fb60b74e47b91f81adac41ae69597.zip
[baseconfig][baseconfig_partitions_cdn][eventlog][minilinux][permissionmanager][rebootcontrol][statisics_reporting][syslog] fixed inconsistencies
Diffstat (limited to 'modules-available/permissionmanager/templates/rolestable.html')
-rw-r--r--modules-available/permissionmanager/templates/rolestable.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules-available/permissionmanager/templates/rolestable.html b/modules-available/permissionmanager/templates/rolestable.html
index a3e31e15..dab0faeb 100644
--- a/modules-available/permissionmanager/templates/rolestable.html
+++ b/modules-available/permissionmanager/templates/rolestable.html
@@ -16,8 +16,8 @@
<thead>
<tr>
<th data-sort="string">{{lang_Roles}}</th>
- <th>{{lang_Edit}}</th>
- <th>{{lang_Delete}}</th>
+ <th class="text-center">{{lang_Edit}}</th>
+ <th class="text-center">{{lang_Delete}}</th>
</tr>
</thead>
@@ -25,11 +25,11 @@
{{#roles}}
<tr class="rolesRow">
<td class="rolesData">{{roleName}}</td>
- <td>
- <a href="?do=permissionmanager&show=roleEditor&roleid={{roleId}}">{{lang_Edit}}</a>
+ <td class="text-center">
+ <a class="btn btn-xs btn-info" href="?do=permissionmanager&show=roleEditor&roleid={{roleId}}"><span class="glyphicon glyphicon-edit"></span></a>
</td>
- <td>
- <a href="#deleteModal" data-toggle="modal" data-target="#deleteModal" onclick="deleteRole('{{roleId}}')">{{lang_Delete}}</a>
+ <td class="text-center">
+ <a class="btn btn-xs btn-danger" href="#deleteModal" data-toggle="modal" data-target="#deleteModal" onclick="deleteRole('{{roleId}}')"><span class="glyphicon glyphicon-trash"></span></a>
</td>
</tr>
{{/roles}}