-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ZMS-1629): adjust calldisplay templates
- Loading branch information
Showing
22 changed files
with
72 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file added
BIN
+35.3 KB
zmscalldisplay/public/_css/fonts/roboto-condensed/roboto-condensed-v19-latin-700.ttf
Binary file not shown.
Binary file added
BIN
+19.7 KB
zmscalldisplay/public/_css/fonts/roboto-condensed/roboto-condensed-v19-latin-700.woff
Binary file not shown.
Binary file added
BIN
+15.3 KB
zmscalldisplay/public/_css/fonts/roboto-condensed/roboto-condensed-v19-latin-700.woff2
Binary file not shown.
Binary file added
BIN
+35.3 KB
zmscalldisplay/public/_css/fonts/roboto-condensed/roboto-condensed-v19-latin-regular.ttf
Binary file not shown.
Binary file added
BIN
+19.7 KB
zmscalldisplay/public/_css/fonts/roboto-condensed/roboto-condensed-v19-latin-regular.woff
Binary file not shown.
Binary file added
BIN
+15.4 KB
zmscalldisplay/public/_css/fonts/roboto-condensed/roboto-condensed-v19-latin-regular.woff2
Binary file not shown.
Binary file added
BIN
+35.3 KB
zmscalldisplay/public/fonts/roboto-condensed/roboto-condensed-v19-latin-700.ttf
Binary file not shown.
Binary file added
BIN
+19.7 KB
zmscalldisplay/public/fonts/roboto-condensed/roboto-condensed-v19-latin-700.woff
Binary file not shown.
Binary file added
BIN
+15.3 KB
zmscalldisplay/public/fonts/roboto-condensed/roboto-condensed-v19-latin-700.woff2
Binary file not shown.
Binary file added
BIN
+35.3 KB
zmscalldisplay/public/fonts/roboto-condensed/roboto-condensed-v19-latin-regular.ttf
Binary file not shown.
Binary file added
BIN
+19.7 KB
zmscalldisplay/public/fonts/roboto-condensed/roboto-condensed-v19-latin-regular.woff
Binary file not shown.
Binary file added
BIN
+15.4 KB
zmscalldisplay/public/fonts/roboto-condensed/roboto-condensed-v19-latin-regular.woff2
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
zmscalldisplay/templates/page/customized/default_counter.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{% extends "page/customized/base.twig" %} | ||
|
||
{% block content %} | ||
{% set skipAll = 1 %} | ||
{% set skipClock = 0 %} | ||
{% set skipClients = 0 %} | ||
{% set skipTime = 0 %} | ||
{{ parent() }} | ||
{% endblock %} | ||
|
||
{% block tableLayoutSettings %} | ||
<script type="text/javascript"> | ||
// Allow multiple columns | ||
window.bo.zmscalldisplay.tableLayout.multiColumns = 2; | ||
// Maximum rows per column | ||
window.bo.zmscalldisplay.tableLayout.maxResults = 10; | ||
// Label on left side of table | ||
window.bo.zmscalldisplay.tableLayout.head.left = 'Nummer'; | ||
window.bo.zmscalldisplay.tableLayout.head.left_en = 'Number'; | ||
// Label on right side of table | ||
window.bo.zmscalldisplay.tableLayout.head.right = 'Schalter'; | ||
window.bo.zmscalldisplay.tableLayout.head.right_en = 'Counter'; | ||
// Time in seconds to show a new number highlighted | ||
window.bo.zmscalldisplay.queue.timeUntilOld = 60; | ||
// Time in seconds to reload waiting info | ||
window.bo.zmscalldisplay.queue.timeWaitingInfo = 20; | ||
// called=ohne Abholer; pickup=nur Abholer | ||
//window.bo.zmscalldisplay.queue.status = 'called'; | ||
// On true show "123" instead of "123a" for room/place | ||
window.bo.zmscalldisplay.queue.showOnlyNumeric = false; | ||
// Seconds to reload table | ||
window.bo.zmscalldisplay.reloadInterval = 5; | ||
{% if displayNumber %} | ||
window.bo.zmscalldisplay.display = {{ displayNumber }}; | ||
{% endif %} | ||
</script> | ||
{% endblock %} | ||
|