summaryrefslogtreecommitdiffstats
path: root/modules-available/exams/templates/page-exams.html
diff options
context:
space:
mode:
authorChristian Klinger2016-06-15 17:41:42 +0200
committerChristian Klinger2016-06-15 17:48:05 +0200
commit6a7cd886266f23fb1d6ccc0652bc45b8e4603913 (patch)
tree20b4ccbd8fc6cc31a3696f8dc979c2d296c48beb /modules-available/exams/templates/page-exams.html
parentUpdated the no-autofill-hack. (diff)
downloadslx-admin-6a7cd886266f23fb1d6ccc0652bc45b8e4603913.tar.gz
slx-admin-6a7cd886266f23fb1d6ccc0652bc45b8e4603913.tar.xz
slx-admin-6a7cd886266f23fb1d6ccc0652bc45b8e4603913.zip
added german and english translations.
Diffstat (limited to 'modules-available/exams/templates/page-exams.html')
-rw-r--r--modules-available/exams/templates/page-exams.html21
1 files changed, 10 insertions, 11 deletions
diff --git a/modules-available/exams/templates/page-exams.html b/modules-available/exams/templates/page-exams.html
index 9e3c102f..9da3578c 100644
--- a/modules-available/exams/templates/page-exams.html
+++ b/modules-available/exams/templates/page-exams.html
@@ -1,33 +1,32 @@
<div class="container-fluid">
- <h1>All Exams</h1>
+ <h1>{{lang_allExamPeriods}}</h1>
<table class="table">
<tr>
- <th>ID</th>
- <th>Location</th>
- <th>Begin</th>
- <th>End</th>
- <th>Actions</th>
+ <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>
+ <td>{{locationnames}} </td>
<td>{{starttime}}</td>
<td>{{endtime}}</td>
<td>
- <form method="POST" action="?do=exams&action=delete"
- onsubmit="return confirm('delete really?');">
+ <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="Delete" class="btn btn-sm" />
+ <input type="submit" value="{{lang_delete}}" class="btn btn-sm" />
</form>
</td>
</tr>
{{/exams}}
</table>
- <a href="?do=exams&action=add" class="btn btn-success">Add Exam </a>
+ <a href="?do=exams&action=add" class="btn btn-success">{{lang_addExam}}</a>
<div class="block" id="timeline"> </div>