{% extends "base.html" %} {% block title %}Space launches - Edward Betts{% endblock %} {% block content %}
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) %}{{ line }}
{% endfor %} {% else %}No description.
{% endif %}