Show space launch weather concerns
This commit is contained in:
parent
9856a609bd
commit
4b449d0d98
|
@ -68,6 +68,7 @@
|
||||||
<div class="col-md-1 text-md-nowrap">
|
<div class="col-md-1 text-md-nowrap">
|
||||||
<span class="d-md-none">launch status:</span>
|
<span class="d-md-none">launch status:</span>
|
||||||
<abbr title="{{ launch.status.name }}">{{ launch.status.abbrev }}</abbr>
|
<abbr title="{{ launch.status.name }}">{{ launch.status.abbrev }}</abbr>
|
||||||
|
{% if launch.probability %}{{ launch.probability }}%{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<div>
|
<div>
|
||||||
|
@ -114,6 +115,12 @@
|
||||||
{% else %}
|
{% else %}
|
||||||
<p>No description.</p>
|
<p>No description.</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if launch.weather_concerns %}
|
||||||
|
<h4>Weather concerns</h4>
|
||||||
|
{% for line in launch.weather_concerns.splitlines() %}
|
||||||
|
<p>{{ line }}</p>
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue