diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2019-01-01 19:47:28 +0100 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2019-02-16 16:53:38 -0500 |
| commit | 7b04eb123423d52aa088c9f5976079a0297ed5b6 (patch) | |
| tree | 161e1fc4afdc4074e43ab88f7f1bd6d2ac77f83e /print/templates/operator_detailedview.html | |
| parent | 89def2161123a12b38bc0cedea9853ee02c10c87 (diff) | |
Fix print metadata (#372)
Diffstat (limited to 'print/templates/operator_detailedview.html')
| -rw-r--r-- | print/templates/operator_detailedview.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print/templates/operator_detailedview.html b/print/templates/operator_detailedview.html index 608b3661..c74a7a72 100644 --- a/print/templates/operator_detailedview.html +++ b/print/templates/operator_detailedview.html @@ -18,7 +18,7 @@ <span>##</span> </p> <p class="operator-svg operator-preview"> - {{ svg_overview|safe }} + {{ svg_overview|replace("<li>", "")|replace("</li>", "")|safe }} </p> <p> <span>{{ _('Unique Colors') }}: {{ job.num_colors }}</span> @@ -51,7 +51,7 @@ </svg> </p> <p class="operator-svg operator-preview"> - {{ color_block.svg_preview|safe }} + {{ color_block.svg_preview|replace("<li>", "")|replace("</li>", "")|safe }} </p> <p> <span data-field-name="color-{{ color_block.color.hex_digits }}" contenteditable="true" data-placeholder="{{ _('Enter thread name...') }}">{{ color_block.color.name }}</span> |
