Files
notifications-admin/app/templates/views/broadcast/macros/area-map.html

25 lines
887 B
HTML
Raw Normal View History

{% macro map(broadcast_message) %}
<div id="map"></div>
<ul>
<li class="area-key area-key--certain">
<span class="visually-hidden">
An area of {{ "{:,.1f}".format(broadcast_message.simple_polygons.estimated_area) }} square miles
</span>
Will get
<span class="visually-hidden">the</span>
2020-09-09 13:29:45 +01:00
alert ({{ broadcast_message.count_of_phones|format_thousands }} phones)
</li>
<li class="area-key area-key--likely">
<span class="visually-hidden">
An extra area of {{ "{:,.1f}".format(broadcast_message.simple_polygons.bleed.estimated_area - broadcast_message.simple_polygons.estimated_area) }} square miles is
</span>
Likely to get
<span class="visually-hidden">
the
</span>
alert
2020-09-09 13:29:45 +01:00
({{ broadcast_message.count_of_phones_likely|format_thousands }} phones)
</li>
</ul>
{% endmacro %}