Show space launch weather concerns

This commit is contained in:
Edward Betts 2024-09-23 09:20:54 +01:00
parent 9856a609bd
commit 4b449d0d98

View file

@ -68,6 +68,7 @@
<div class="col-md-1 text-md-nowrap">
<span class="d-md-none">launch status:</span>
<abbr title="{{ launch.status.name }}">{{ launch.status.abbrev }}</abbr>
{% if launch.probability %}{{ launch.probability }}%{% endif %}
</div>
<div class="col">
<div>
@ -114,6 +115,12 @@
{% else %}
<p>No description.</p>
{% endif %}
{% if launch.weather_concerns %}
<h4>Weather concerns</h4>
{% for line in launch.weather_concerns.splitlines() %}
<p>{{ line }}</p>
{% endfor %}
{% endif %}
</div>
</div>
</div>