diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-04-17 15:55:52 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-04-18 15:26:33 -0400 |
| commit | b5968dc11ff479f2c7cd5217c47a872fe04295e4 (patch) | |
| tree | 57be7e01cb9451a4069ffc8305cbee4ef2f1f794 /print/templates/operator_detailedview.html | |
| parent | 51741745b0bb691a55b642a2ea938ac74324da2d (diff) | |
fix formatting of dimensions
Diffstat (limited to 'print/templates/operator_detailedview.html')
| -rw-r--r-- | print/templates/operator_detailedview.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print/templates/operator_detailedview.html b/print/templates/operator_detailedview.html index 633b9286..92c3445f 100644 --- a/print/templates/operator_detailedview.html +++ b/print/templates/operator_detailedview.html @@ -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> |
