summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/templates/page-locations.html
diff options
context:
space:
mode:
authorSimon Rettberg2017-06-13 18:32:23 +0200
committerSimon Rettberg2017-06-13 18:32:23 +0200
commit0085d9309252fc1eec276b6eb05f271a140bee5d (patch)
tree01b36229b0b6e1a7477274ba8b62231c1b82ccbb /modules-available/locationinfo/templates/page-locations.html
parent[locationinfo] Location edit part done so far (diff)
downloadslx-admin-0085d9309252fc1eec276b6eb05f271a140bee5d.tar.gz
slx-admin-0085d9309252fc1eec276b6eb05f271a140bee5d.tar.xz
slx-admin-0085d9309252fc1eec276b6eb05f271a140bee5d.zip
[locationinfo] slxadmin part done, todo: frontend+api
Diffstat (limited to 'modules-available/locationinfo/templates/page-locations.html')
-rw-r--r--modules-available/locationinfo/templates/page-locations.html20
1 files changed, 14 insertions, 6 deletions
diff --git a/modules-available/locationinfo/templates/page-locations.html b/modules-available/locationinfo/templates/page-locations.html
index 27c2d9a2..3eafa7bf 100644
--- a/modules-available/locationinfo/templates/page-locations.html
+++ b/modules-available/locationinfo/templates/page-locations.html
@@ -1,17 +1,25 @@
-<h4>{{lang_buildingTable}}</h4>
-<table class="table table-condensed table-hover" style="margin-bottom:0">
+<h2>{{lang_locationsTable}}</h2>
+<p>{{lang_locationsTableHints}}</p>
+
+<table class="table table-condensed table-hover">
+ <thead>
<tr>
<th>{{lang_locationName}}</th>
- <th>{{lang_openingTime}}</th>
- <th>{{lang_locationSettings}}</th>
+ <th>{{lang_backend}}</th>
+ <th>{{lang_openingtimes}}</th>
</tr>
+ </thead>
+ <tbody>
{{#list}}
<tr>
<td>
<div style="display:inline-block;width:{{depth}}em"></div>
- <a href="#" class="loc-name {{^depth}}slx-bold{{/depth}}" data-locationid="{{locationid}}">{{locationname}}</a>
+ <a href="#" class="loc-name {{^depth}}slx-bold{{/depth}}" data-locationid="{{locationid}}">
+ {{locationname}}
+ <span class="glyphicon glyphicon-edit"></span>
+ </a>
</td>
<td>
{{backend}}
@@ -20,8 +28,8 @@
<span class="glyphicon glyphicon-{{openingGlyph}}"></span>
</td>
</tr>
-
{{/list}}
+ </tbody>
</table>
<div class="modal fade" id="location-modal" tabindex="-1" role="dialog">