diff options
Diffstat (limited to 'print/templates')
| -rw-r--r-- | print/templates/operator_overview.html | 4 | ||||
| -rw-r--r-- | print/templates/print_detail.html | 7 | ||||
| -rw-r--r-- | print/templates/print_overview.html | 12 | ||||
| -rw-r--r-- | print/templates/ui.html | 8 |
4 files changed, 21 insertions, 10 deletions
diff --git a/print/templates/operator_overview.html b/print/templates/operator_overview.html index 367d6d2b..6fa46911 100644 --- a/print/templates/operator_overview.html +++ b/print/templates/operator_overview.html @@ -32,6 +32,10 @@ <button class="svg-fit">{{ _('Fit') }}</button> <button class="svg-full">100%</button> <button class="svg-apply">{{ _('Apply to all') }}</button> + <button class="svg-realistic"> + <input type="checkbox" id="realistic-operator-overview" data-field-name="overview" class="realistic" /> + <label for="realistic-operator-overview" class="realistic">Realistic</label> + </button> </div> </figure> </main> diff --git a/print/templates/print_detail.html b/print/templates/print_detail.html index 714d33a2..e73fe918 100644 --- a/print/templates/print_detail.html +++ b/print/templates/print_detail.html @@ -22,9 +22,12 @@ <button class="svg-fit">Fit</button> <button class="svg-full">100%</button> <button class="svg-apply">Apply to all</button> + <button class="svg-realistic"> + <input type="checkbox" id="realistic-color-block-{{ loop.index0 }}" data-field-name="block{{ loop.index0 }}" class="realistic" /> + <label for="realistic-color-block-{{ loop.index0 }}" class="realistic">Realistic</label> + </button> </div> - </figure> - + </figure> <div class="color-palette detailed"> {% include 'color_swatch.html' %} </div> diff --git a/print/templates/print_overview.html b/print/templates/print_overview.html index efcf5b2e..b42ab7a9 100644 --- a/print/templates/print_overview.html +++ b/print/templates/print_overview.html @@ -32,14 +32,18 @@ <button class="svg-fit">Fit</button> <button class="svg-full">100%</button> <button class="svg-apply">Apply to all</button> + <button class="svg-realistic"> + <input type="checkbox" id="realistic-client-overview" data-field-name="overview" class="realistic" /> + <label for="realistic-client-overview" class="realistic">Realistic</label> + </button> </div> - </figure> - + </figure> + <div class="color-palette"> {% for color_block in color_blocks %} {% include 'color_swatch.html' %} - {% endfor %} - + {% endfor %} + </div> <div class="signature">{{ _('Client Signature') }}</div> </main> diff --git a/print/templates/ui.html b/print/templates/ui.html index b09dc941..3b11f345 100644 --- a/print/templates/ui.html +++ b/print/templates/ui.html @@ -26,10 +26,10 @@ <div> <fieldset> <legend>{{ _('Print Layouts') }}</legend> - <p><input type="checkbox" id="client-overview" data-field-name="client-overview" /><label for="client-overview">Client Overview</label></p> - <p><input type="checkbox" id="client-detailedview" data-field-name="client-detailedview" /><label for="client-detailedview">Client Detailed View</label></p> - <p><input type="checkbox" id="operator-overview" data-field-name="operator-overview" CHECKED /><label for="operator-overview">Operator Overview</label></p> - <p><input type="checkbox" id="operator-detailedview" data-field-name="operator-detailedview" CHECKED /><label for="operator-detailedview">Operator Detailed View</label></p> + <p><input type="checkbox" class="view" id="client-overview" data-field-name="client-overview" /><label for="client-overview">Client Overview</label></p> + <p><input type="checkbox" class="view" id="client-detailedview" data-field-name="client-detailedview" /><label for="client-detailedview">Client Detailed View</label></p> + <p><input type="checkbox" class="view" id="operator-overview" data-field-name="operator-overview" CHECKED /><label for="operator-overview">Operator Overview</label></p> + <p><input type="checkbox" class="view" id="operator-detailedview" data-field-name="operator-detailedview" CHECKED /><label for="operator-detailedview">Operator Detailed View</label></p> </fieldset> <button id="save-settings" title="{{ _("Includes these Page Setup settings and also the icon.") }}">{{ _("Save as defaults") }}</button> </div> |
