{% assign missing_image = false %} {% for item in job.inputs %} {% if item.type == 'Image' and item.required == true and item.state == 'error' or item.state == 'empty' %} {% assign missing_image = true %} {% break %} {% endif %} {% endfor %} {{ job.item.info['Property Name'] | default: job.item.product.title }} {% for item in job.inputs %} {% if item.name contains 'About Your Item' or item.name contains 'Repair Description' %} {{ item.label }} {{ item.value }} {% endif %} {% endfor %} {% for item in job.inputs %} {% if item.name contains 'Property Name' or item.name contains '_Image' or item.name contains 'About Your Item' or item.name contains 'Repair Description' %}{% continue %}{% endif %} {{ item.label }} {% if item.name contains 'Declared Value' %} {% if item.value > 0 %} {{ item.value | money }} {% endif %} {% else %} {% assign items = item.value | split: ',' %} {% for i in items %} {{ i }} {% endfor %} {% endif %} {% endfor %} Services {% for _service in job.services %} {% assign service = _service[1] %} {{ service.title }} {% if service.price > 0 %} {{ service.price | money }} {% else %} Quote {% endif %} {% endfor %} Total {% if job.subtotal > 0 %} {{ job.subtotal | money }} {% else %} Quote {% endif %}