From 98612eeae37ac5dee611f4607244da7c613c08e9 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Wed, 31 Oct 2018 01:06:31 +0100 Subject: Print Estimated Time (#341) --- print/templates/operator_detailedview.html | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) (limited to 'print/templates/operator_detailedview.html') diff --git a/print/templates/operator_detailedview.html b/print/templates/operator_detailedview.html index ae578d9d..608b3661 100644 --- a/print/templates/operator_detailedview.html +++ b/print/templates/operator_detailedview.html @@ -22,16 +22,17 @@
{{ _('Unique Colors') }}: {{ job.num_colors }} - {{ _('Color Blocks') }}: {{ job.num_color_blocks }} + {{ _('Color Blocks') }}: {{ job.num_color_blocks }}
{{ _('Design box size') }}: {{ "%0.1fmm X %0.1fmm" | format(*job.dimensions) }} - {{ _('Total thread used') }}: {{job.estimated_thread }} - {{ _('Total stitch count') }}: {{job.num_stitches }} + + {{ _('Total stitch count') }}: {{job.num_stitches }} + {{ ('Estimated time') }}:
- {{ _('Total stops') }}: {{ job.num_stops }} - {{ _('Total trims') }}: {{ job.num_trims }} + {{ _('Total stops') }}: {{ job.num_stops }} + {{ _('Total trims') }}: {{ job.num_trims }}
@@ -53,20 +54,22 @@ {{ color_block.svg_preview|safe }}
- {{ color_block.color.name }} + {{ color_block.color.name }} {{ color_block.color.rgb }} {{ color_block.color.manufacturer }} {{ "#" + color_block.color.number if color_block.color.number }}
- {{ _('thread used') }}: - {{ _('# stitches') }}: {{ color_block.num_stitches }} + + {{ _('# stitches') }}: {{ color_block.num_stitches }} + {{ _('estimated time') }}:
- {{ _('trims') }}: {{ color_block.num_trims }} + {{ _('trims') }}: {{ color_block.num_trims }} {{ _('stop after?') }}: {{ _("yes") if color_block.stop_after else _("no") }} +
- +
{% endfor %} -- cgit v1.2.3