summaryrefslogtreecommitdiff
path: root/print/templates/operator_detailedview.html
diff options
context:
space:
mode:
authorLex Neva <lexelby@users.noreply.github.com>2018-04-28 13:40:52 -0400
committerGitHub <noreply@github.com>2018-04-28 13:40:52 -0400
commit14828d6fa2d290fb5f10b2e5956b2fa1153588d5 (patch)
tree8e163688d30fd6ec23b1c7d5977ccceb97091264 /print/templates/operator_detailedview.html
parent69d231b4eb197bfe135ec7e146b53c5de975b9d9 (diff)
parent8e3dd74a286d4549fdb1dd9cc7a9fcfadb85bb9e (diff)
Merge pull request #148 from lexelby/lexelby-print-features
additional print features
Diffstat (limited to 'print/templates/operator_detailedview.html')
-rw-r--r--print/templates/operator_detailedview.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/print/templates/operator_detailedview.html b/print/templates/operator_detailedview.html
index 633b9286..f78028d7 100644
--- a/print/templates/operator_detailedview.html
+++ b/print/templates/operator_detailedview.html
@@ -10,7 +10,7 @@
<p>{{ _('Color') }}</p>
<p>{{ _('Thread Consumption') }}</p>
<p>{{ _('Stops and Trims') }}</p>
- <p>{{ _('Estimated Time') }}</p>
+ <p>{{ _('Notes') }}</p>
</div>
{% if outer_loop.index == 1 %}
<div>
@@ -25,7 +25,7 @@
<span>{{ _('Color Blocks') }}: {{ job.num_color_blocks }}</span>
</p>
<p>
- <span>{{ _('Design box size') }}: {{ job.dimensions }}</span>
+ <span>{{ _('Design box size') }}: {{ "%0.1fmm X %0.1fmm" | format(*job.dimensions) }}</span>
<span>{{ _('Total thread used') }}: {{job.estimated_thread }}</span>
<span>{{ _('Total stitch count') }}: {{job.num_stitches }}</span>
</p>
@@ -34,7 +34,7 @@
<span>{{ _('Total nr trims') }}: {{ job.num_trims }}</span>
</p>
<p>
- <span>{{ job.estimated_time }}</span>
+ <span></span>
</p>
</div>
{% endif %}
@@ -45,7 +45,7 @@
<svg xmlns="http://www.w3.org/2000/svg">
<rect fill="rgb{{ color_block.color.rgb }}" width="15mm" height="100%" />
<text fill="rgb{{ color_block.color.font_color }}">
- <tspan x="4mm" y="7.5mm" class="color-index">#{{ loop.index + outer_loop.index0 * 13 }}</tspan>
+ <tspan x="4mm" y="7.5mm" class="color-index">#{{ loop.index + outer_loop.index0 * 12 }}</tspan>
</text>
</svg>
</p>
@@ -65,7 +65,7 @@
<span>{{ _('# trims') }}: {{ color_block.num_trims }}</span>
</p>
<p>
- <span>{{ color_block.estimatedtime }}</span>
+ <span class="notes" contenteditable="true" data-field-name="operator-notes-block{{ loop.index0 + outer_loop.index0 * 12 }}" data-placeholder="{{ _("Enter operator notes...") }}"></span>
</p>
</div>
{% endfor %}