From 4b449d0d9854964e73e34f1b0a7b4137c33c80d9 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Mon, 23 Sep 2024 09:20:54 +0100 Subject: [PATCH] Show space launch weather concerns --- templates/launches.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/templates/launches.html b/templates/launches.html index 2adcfc3..9e725df 100644 --- a/templates/launches.html +++ b/templates/launches.html @@ -68,6 +68,7 @@
launch status: {{ launch.status.abbrev }} + {% if launch.probability %}{{ launch.probability }}%{% endif %}
@@ -114,6 +115,12 @@ {% else %}

No description.

{% endif %} + {% if launch.weather_concerns %} +

Weather concerns

+ {% for line in launch.weather_concerns.splitlines() %} +

{{ line }}

+ {% endfor %} + {% endif %}