{% if material_coverages %}
{% for coverage in material_coverages %}
Coverage:
"{{ coverage.name }}"
Notes
{% if coverage.notes %}
Type
DateTime
Note
{% for note in coverage.notes %}
{{ note.type }}
{{ note.date_time }}
{{ note.note }}
{% endfor %}
{% else %}
No notes.
{% endif %}
Number of materials:
{{ coverage.material_count }}
Material Name
Color
Manning's N
{%- for material in coverage.materials %}
{{ material.name }}
{{ material.mannings_n }}
{%- endfor %}
Material coverage plot
{% if coverage.plot %}
{% else %}
No plot available.
{% endif %}
{% endfor %}
{% else %}
No materials coverages.
{% endif %}