{% if printview != 'detailedview' %}
{{ _('Color') }}: {{ color_block.color.thread_name }} {# We don't want to see rgb if we have more than 7 colorSwatches #} {% if color_blocks|length < 7 %} {{ _('rgb') }}: {{ color_block.color.rgb }} {% endif %} {# We don't want to see thread_used if we have more than 7 colorSwatches to show #} {% if color_blocks|length < 7 %} {{ _('thread used') }}: {{ color_block.color.thread_description }} {% endif %} {# We don't want to see num_stitch if we have more than 49 colorSwatches to show #} {% if color_blocks|length < 49 %} {{ _('# stitches') }}: {{ color_block.num_stitches }} {% endif %} {# We don't want to see stops and trims if we have more than 13 colorSwatches to show #} {% if color_blocks|length < 13 %} {{ _('# stops') }}: {{ color_block.num_stops }} {{ _('# trims') }}: {{ color_block.num_trims }} {% endif %}
{% else %}

{{ _('Color') }}:{{ color_block.color.thread_name }}

{{ _('rgb') }}:{{ color_block.color.rgb }}

{{ _('thread used') }}:{{ color_block.color.thread_description }}

{{ _('# stitches') }}:{{ color_block.num_stitches }}

{{ _('# stops') }}:{{ color_block.num_stops }}

{{ _('# trims') }}:{{ color_block.num_trims }}

{%endif %}