summaryrefslogtreecommitdiff
path: root/print/templates/index.html
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2019-04-10 00:07:55 -0400
committerLex Neva <github.com@lexneva.name>2019-04-10 00:07:55 -0400
commit2c39fbc8cf0ec626c945cbc4bd631c3372431821 (patch)
treed7344e7bb1344848d2c60735dc97078a5d95bb71 /print/templates/index.html
parent9d4441b7009564a57425ab0ab73a70be5b8dabf4 (diff)
parentd87750b8b01ec8aba52ed653ab151930d5d84a9f (diff)
Merge branch 'master' into lexelby/revamp-fill
Diffstat (limited to 'print/templates/index.html')
-rw-r--r--print/templates/index.html19
1 files changed, 10 insertions, 9 deletions
diff --git a/print/templates/index.html b/print/templates/index.html
index c7fa5d74..d0ab848f 100644
--- a/print/templates/index.html
+++ b/print/templates/index.html
@@ -9,22 +9,23 @@
</head>
<body>
{% include 'ui.html' %}
-
{# client overview #}
- <div class="page client-overview" style="display: {{ 'block' if view.client_overview else 'none' }}">{% include 'print_overview.html' %}</div>
+ <div class="page client-overview" style="display: {{ 'block' if view.client_overview else 'none' }}">{% include 'print_overview.html' %}</div>
{# client detailedview #}
- {% set printview = 'detailedview' %}
- {% for color_block in color_blocks %}
- {% set outer_loop = loop %}
- <div class="page client-detailedview" style="display: {{ 'block' if view.client_detailedview else 'none' }}">{% include 'print_detail.html' %}</div>
- {% endfor %}
+ {% set printview = 'detailedview' %}
+ {% for color_block in color_blocks %}
+ {% set outer_loop = loop %}
+ <div class="page client-detailedview" style="display: {{ 'block' if view.client_detailedview else 'none' }}">{% include 'print_detail.html' %}</div>
+ {% endfor %}
{# operator overview #}
- <div class="page operator-overview" style="display: {{ 'block' if view.operator_overview else 'none' }}">{% include 'operator_overview.html' %}</div>
+ <div class="page operator-overview" style="display: {{ 'block' if view.operator_overview else 'none' }}">{% include 'operator_overview.html' %}</div>
{# operator detailed view #}
- {% include 'operator_detailedview.html' %}
+ {% include 'operator_detailedview.html' %}
+{# custom pages #}
+ <div class="page custom-page" style="display: {{ 'block' if view.custom_page else 'none' }}">{% include 'custom-page.html' %}</div>
</body>
</html>