{% import '_macros.html' as m %}
{{ m.header(d) }}
{{ m.title_block(d) }}
{{ m.meta_grid([
{'label':'Survey Date','value':d.date},
{'label':'Surveyor','value':d.surveyor or d.prepared_by},
{'label':'Conditions','value':d.conditions},
{'label':'Result','value':d.status},
]) }}
{% if d.customer %}{{ m.party('Customer', d.customer) }}{% endif %}
{% if d.site %}{{ m.party('Survey Site', d.site) }}{% endif %}
{% if d.summary %}Feasibility Summary
{{ d.summary }}
{% endif %}
{% if d.candidate_links %}
Candidate Links / Line of Sight
| Target AP / Tower | Distance | Azimuth | Est. RSSI | Clear LoS |
{% for l in d.candidate_links %}
| {{ l.target }} |
{{ l.distance }} |
{{ l.azimuth }} |
{{ l.rssi }} |
{{ l.los }} |
{% endfor %}
{% endif %}
{% for s in d.sections %}{{ m.section(s) }}{% endfor %}
{% if d.obstructions %}
Obstructions & Site Notes
{% for it in d.obstructions %}- {{ it }}
{% endfor %}
{% endif %}
{% if d.equipment_reco %}
Recommended Equipment
{% for it in d.equipment_reco %}- {{ it }}
{% endfor %}
{% endif %}
{% if d.checklist %}
Survey Checklist
{% for it in d.checklist %}- {{ it }}
{% endfor %}
{% endif %}
{{ m.note(d.recommendation) }}
{{ m.signatures(d.signatures or [
{'role':'Surveyor','who':d.surveyor or d.prepared_by or 'Jason Stedwell, Owner'},
{'role':'Customer Acknowledgement','who':(d.customer.name if d.customer else '')},
]) }}