{% extends "base.html" %} {% load static %} {% block title %} - Search Results{% endblock %} {% block css %} {% endblock css %} {% block content %}
{% if results.count > 0 %}

Your search returned multiple results:

{% else %}

No results found

If you are looking for a satellite that we don't seem to have, please let us know!
{% endif %}
{% for satellite in results %} {% include 'includes/cards/satellite_card.html' with satellite=satellite %} {% endfor %}
{% endblock content %}