{% extends "direct/base.html" %} {% block content %} {% load i18n %}
{%if summary == "Unsure"%}

{{summary}}

{% elif summary == "Good"%}

{{summary}}

{% elif summary == "Bad"%}

{{summary}}

{% elif summary == "Not Found"%}

{{summary}}

{% else %}

{{summary}}

{% endif %}

{% for h in highlights %}
    {% for key, value in h.items %}
  • {{value }} {{key}}
  • {% endfor %}
{% endfor %}
{% endblock %}