summaryrefslogtreecommitdiff
path: root/print/templates/operator_detailedview.html
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2018-07-23 20:22:53 -0400
committerLex Neva <github.com@lexneva.name>2018-07-25 21:18:13 -0400
commit1bd7aa110a1b30a6c44f4d792b3c817e10234c07 (patch)
tree4e652bde1122f44f360e140b696cb0eb81a7e9e1 /print/templates/operator_detailedview.html
parente0cecd6fa444e3b7ea2391ce4f2953ae9fd5f3fa (diff)
change '# stops' in block to be 'stop after?'
Diffstat (limited to 'print/templates/operator_detailedview.html')
-rw-r--r--print/templates/operator_detailedview.html12
1 files changed, 4 insertions, 8 deletions
diff --git a/print/templates/operator_detailedview.html b/print/templates/operator_detailedview.html
index e1899db4..e3c0d441 100644
--- a/print/templates/operator_detailedview.html
+++ b/print/templates/operator_detailedview.html
@@ -30,18 +30,16 @@
<span>{{ _('Total stitch count') }}: {{job.num_stitches }}</span>
</p>
<p>
- <span>{{ _('Total nr stops') }}: {{ job.num_stops }}</span>
- <span>{{ _('Total nr trims') }}: {{ job.num_trims }}</span>
+ <span>{{ _('Total stops') }}: {{ job.num_stops }}</span>
+ <span>{{ _('Total trims') }}: {{ job.num_trims }}</span>
</p>
<p>
<span></span>
</p>
</div>
-
{% for color_block in color_blocks %}
-
<div class="opd-color-block">
<p class="operator-svg operator-colorswatch">
<svg xmlns="http://www.w3.org/2000/svg">
@@ -64,13 +62,11 @@
<span>{{ _('# stitches') }}: {{ color_block.num_stitches }}</span>
</p>
<p>
- <span>{{ _('# stops') }}: {{ color_block.num_stops }}</span>
- <span>{{ _('# trims') }}: {{ color_block.num_trims }}</span>
+ <span>{{ _('trims') }}: {{ color_block.num_trims }}</span>
+ <span>{{ _('stop after?') }}: {{ _("yes") if color_block.stop_after else _("no") }}</span>
</p>
<p>
<span class="notes" contenteditable="true" data-field-name="operator-notes-block{{ loop.index }}" data-placeholder="{{ _("Enter operator notes...") }}"></span>
</p>
</div>
{% endfor %}
-
-