diff options
Diffstat (limited to 'modules-available/permissionmanager/templates/rolestable.html')
-rw-r--r-- | modules-available/permissionmanager/templates/rolestable.html | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/modules-available/permissionmanager/templates/rolestable.html b/modules-available/permissionmanager/templates/rolestable.html index e50dffc7..f3521964 100644 --- a/modules-available/permissionmanager/templates/rolestable.html +++ b/modules-available/permissionmanager/templates/rolestable.html @@ -31,7 +31,14 @@ <td class="rolename">{{rolename}}</td> <td class="text-muted"><table class="slx-ellipsis"><tr><td>{{roledescription}}</td></tr></table></td> <td class="text-center"> - <a class="btn btn-xs btn-primary" href="?do=permissionmanager&show=roleEditor&roleid={{roleid}}"><span class="glyphicon glyphicon-edit"></span></a> + <a class="btn btn-xs btn-primary" href="?do=permissionmanager&show=roleEditor&roleid={{roleid}}"> + {{#builtin}} + <span class="glyphicon glyphicon-duplicate"></span> + {{/builtin}} + {{^builtin}} + <span class="glyphicon glyphicon-edit"></span> + {{/builtin}} + </a> </td> <td class="text-center"> <button type="submit" name="deleteId" value="{{roleid}}" class="btn btn-xs btn-danger" {{perms.roles.edit.disabled}} @@ -52,7 +59,10 @@ </form> <div class="text-right"> - <a href="?do=permissionmanager&show=roleEditor" class="btn btn-success {{perms.roles.edit.disabled}}"><span class="glyphicon glyphicon-plus"></span> {{lang_newRole}}</a> + <a href="?do=permissionmanager&show=roleEditor" class="btn btn-success {{perms.roles.edit.disabled}}"> + <span class="glyphicon glyphicon-plus"></span> + {{lang_newRole}} + </a> </div> <script> |