{% block pipe_diagram %}
{{ t('labels.position') }}
{{ t('labels.cont') }}
{{ t('labels.code') }}
{{ t('labels.observations') }}
{{ t('labels.video') }}
{{ t('labels.photo') }}
{{ t('labels.grade') }}
{% if page.diagram_path %} {% endif %}
{% for observation in page.observations %}
{% if observation.distance is not none %} {{ "%.2f"|format(observation.distance) }} {% endif %}
{% if observation.continuous_defect %} {{ observation.continuous_defect }} {% endif %}
{% if observation.code %} {{ observation.code }} {% endif %}
{% if observation.pdf_observation_string_spanish %} {{ observation.pdf_observation_string_spanish }} {% endif %}
{% if observation.video_ref %} {{ observation.video_ref }} {% endif %}
{{ loop.index0 + (page.start_index if page.start_index is defined else 0) + 1 }}.png
{% if observation.severity %} {{ observation.severity }} {% endif %}
{% endfor %}
{% endblock %}