{% import '_macros.html' as m %}
{{ m.header(d) }}
{{ m.title_block(d) }}
{{ m.meta_grid([
{'label':'Date','value':d.date},
{'label':'Prepared By','value':d.prepared_by},
{'label':'Reference','value':d.reference},
{'label':'Status','value':d.status},
]) }}
{% if d.customer or d.site %}
{% if d.customer %}{{ m.party('Customer', d.customer) }}{% endif %}
{% if d.site %}{{ m.party('Site', d.site) }}{% endif %}
{% endif %}
{% if d.summary %}{% endif %}
{% for s in d.sections %}{{ m.section(s) }}{% endfor %}
{{ m.note(d.note) }}
{% if d.signatures %}{{ m.signatures(d.signatures) }}{% endif %}