summaryrefslogtreecommitdiffstats
path: root/modules-available/exams/templates/page-exams.html
diff options
context:
space:
mode:
authorChristian Klinger2016-06-17 11:37:43 +0200
committerChristian Klinger2016-06-17 11:37:43 +0200
commit052eb9ae59e7e7008d5223984c0c41ef7730150f (patch)
tree52acc3589262b40b9505e9691b61bc265d383d3d /modules-available/exams/templates/page-exams.html
parentMerge branch 'modularization' of git.openslx.org:openslx-ng/slx-admin into mo... (diff)
downloadslx-admin-052eb9ae59e7e7008d5223984c0c41ef7730150f.tar.gz
slx-admin-052eb9ae59e7e7008d5223984c0c41ef7730150f.tar.xz
slx-admin-052eb9ae59e7e7008d5223984c0c41ef7730150f.zip
Added translation for messages.
Diffstat (limited to 'modules-available/exams/templates/page-exams.html')
-rw-r--r--modules-available/exams/templates/page-exams.html36
1 files changed, 22 insertions, 14 deletions
diff --git a/modules-available/exams/templates/page-exams.html b/modules-available/exams/templates/page-exams.html
index 9da3578c..0cc4cb8a 100644
--- a/modules-available/exams/templates/page-exams.html
+++ b/modules-available/exams/templates/page-exams.html
@@ -1,15 +1,16 @@
<div class="container-fluid">
<h1>{{lang_allExamPeriods}}</h1>
- <table class="table">
- <tr>
- <th>{{lang_id}}</th>
- <th>{{lang_locations}}</th>
- <th>{{lang_begin}}</th>
- <th>{{lang_end}}</th>
- <th>{{lang_actions}}</th>
- </tr>
- {{#exams}}
+ <div class="row">
+ <table class="table">
+ <tr>
+ <th>{{lang_id}}</th>
+ <th>{{lang_locations}}</th>
+ <th>{{lang_begin}}</th>
+ <th>{{lang_end}}</th>
+ <th>{{lang_actions}}</th>
+ </tr>
+ {{#exams}}
<tr>
<td>{{examid}}</td>
<td>{{locationnames}} </td>
@@ -19,17 +20,24 @@
<form method="POST" action="?do=exams&action=delete" onsubmit="return confirm('{{lang_deleteConfirmation}}');">
<input type="hidden" name="token" value="{{token}}"/>
<input type="hidden" name="examid" value="{{examid}}"/>
- <input type="submit" value="{{lang_delete}}" class="btn btn-sm" />
+ <input type="submit" value="{{lang_delete}}" class="btn btn-default btn-sm" />
</form>
</td>
</tr>
- {{/exams}}
+ {{/exams}}
- </table>
- <a href="?do=exams&action=add" class="btn btn-success">{{lang_addExam}}</a>
+ </table>
+ <div class="btn-toolbar" role="toolbar">
+ <div class="btn-group" role="group">
+ <a href="?do=exams&action=add" class="btn btn-success">{{lang_addExam}}</a>
+ </div>
+ </div>
+ </div>
- <div class="block" id="timeline"> </div>
+ <div class="row" style="margin-top: 2em">
+ <div id="timeline"></div>
+ </div>
</div>
<script type="application/javascript"><!--