summaryrefslogtreecommitdiffstats
path: root/modules-available/permissionmanager/templates/locationsTable.html
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/permissionmanager/templates/locationsTable.html')
-rw-r--r--modules-available/permissionmanager/templates/locationsTable.html17
1 files changed, 14 insertions, 3 deletions
diff --git a/modules-available/permissionmanager/templates/locationsTable.html b/modules-available/permissionmanager/templates/locationsTable.html
index bd3b7f88..e170cd02 100644
--- a/modules-available/permissionmanager/templates/locationsTable.html
+++ b/modules-available/permissionmanager/templates/locationsTable.html
@@ -2,12 +2,23 @@
<div class="col-md-12">
<table id="locationsTable" class="table table-condensed table-hover">
<thead>
-
+ <tr>
+ <th data-sort="string">{{lang_Locations}}</th>
+ <th>{{lang_Roles}}</th>
+ </tr>
</thead>
<tbody>
-
-
+ {{#location}}
+ <tr>
+ <td>{{name}}</td>
+ <td>
+ {{#role}}
+ <span class="label label-default customSpanMargin">{{.}}</span>
+ {{/role}}
+ </td>
+ </tr>
+ {{/location}}
</tbody>
</table>
</div>