{% extends "base.html" %} {% block title %}Space launches - Edward Betts{% endblock %} {% block content %}

Space launches

Filters

Mission type: {% if request.args.type %}🗙{% endif %} {% for t in mission_types | sort %} {% if t == request.args.type %} {{ t }} {% else %} {{ t }} {% endif %} {% if not loop.last %} | {% endif %} {% endfor %}

Vehicle: {% if request.args.rocket %}🗙{% endif %} {% for r in rockets | sort %} {% if r == request.args.rockets %} {{ r }} {% else %} {{ r }} {% endif %} {% if not loop.last %} | {% endif %} {% endfor %}

{% for launch in launches %} {% set highlight =" bg-primary-subtle" if launch.slug in config.FOLLOW_LAUNCHES else "" %} {% set country = get_country(launch.country_code) %}
{{ launch.t0_date }}
{% if launch.t0_time %} {{ launch.t0_time }}{% endif %} {{ launch.net_precision }}
launch status: {{ launch.status.abbrev }}
{{ country.flag }} {{ launch.rocket.full_name }} – {{launch.mission.name }} – {% if launch.launch_provider_abbrev %} {{ launch.launch_provider_abbrev }} {% else %} {{ launch.launch_provider }} {% endif %} ({{ launch.launch_provider_type }}) — {{ launch.orbit.name }} ({{ launch.orbit.abbrev }}) — {{ launch.mission.type }}
{% if launch.pad_wikipedia_url %} {{ launch.pad_name }} {% else %} {{ launch.pad_name }} {% if launch.pad_name != "Unknown Pad" %}(no Wikipedia article){% endif %} {% endif %} — {{ launch.location }}
{% if launch.mission.agencies | count %}
{% for agency in launch.mission.agencies %} {%- if not loop.first %}, {% endif %} {{agency.name }} {{ get_country(agency.country_code).flag }} ({{ agency.type }}) {# #} {% endfor %}
{% endif %}
{% if launch.mission %} {% for line in launch.mission.description.splitlines() %}

{{ line }}

{% endfor %} {% else %}

No description.

{% endif %}
{% endfor %}
{% endblock %}