summaryrefslogtreecommitdiff
path: root/print/templates/operator_detailedview.html
diff options
context:
space:
mode:
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 %}
-
-