diff options
author | Christian Hofmaier | 2017-04-07 16:05:39 +0200 |
---|---|---|
committer | Christian Hofmaier | 2017-04-07 16:05:39 +0200 |
commit | fccd40f11c9ce2d9220f1fba522407704119d3e6 (patch) | |
tree | bccebd3bbe0c95bfdbbedde40d00aebfa847d7c4 /modules-available/permissionmanager/templates/locationstable.html | |
parent | [permission-manager] filter for roles in user and location table, changed str... (diff) | |
download | slx-admin-fccd40f11c9ce2d9220f1fba522407704119d3e6.tar.gz slx-admin-fccd40f11c9ce2d9220f1fba522407704119d3e6.tar.xz slx-admin-fccd40f11c9ce2d9220f1fba522407704119d3e6.zip |
[permission-manager] corrected wrong indentation for much better readability
Diffstat (limited to 'modules-available/permissionmanager/templates/locationstable.html')
-rw-r--r-- | modules-available/permissionmanager/templates/locationstable.html | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/modules-available/permissionmanager/templates/locationstable.html b/modules-available/permissionmanager/templates/locationstable.html index 3f15ee7b..aa4553f8 100644 --- a/modules-available/permissionmanager/templates/locationstable.html +++ b/modules-available/permissionmanager/templates/locationstable.html @@ -13,22 +13,22 @@ <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> + <tr> + <th data-sort="string">{{lang_Locations}}</th> + <th>{{lang_Roles}}</th> + </tr> </thead> <tbody> {{#location}} - <tr data-selectizeCount='0'> - <td>{{locname}}</td> - <td> - {{#roles}} - <span class="label label-default customSpanMargin roleId-{{roleId}}">{{roleName}}</span> - {{/roles}} - </td> - </tr> + <tr data-selectizeCount='0'> + <td>{{locname}}</td> + <td> + {{#roles}} + <span class="label label-default customSpanMargin roleId-{{roleId}}">{{roleName}}</span> + {{/roles}} + </td> + </tr> {{/location}} </tbody> </table> |