Bug fix missing space launch data

This commit is contained in:
Edward Betts 2023-12-09 11:37:52 +00:00
parent 3b89efa65f
commit 9506e5e60e
3 changed files with 12 additions and 5 deletions

View file

@ -216,9 +216,13 @@
{% endif %}
&mdash; {{ launch.location }}<br/>
{% for line in launch.mission.description.splitlines() %}
<p>{{ line }}</p>
{% endfor %}
{% if launch.mission %}
{% for line in launch.mission.description.splitlines() %}
<p>{{ line }}</p>
{% endfor %}
{% else %}
<p>No description.</p>
{% endif %}
</div>
</div>