{% extends 'base.html' %} {% load bootstrap4 %} {% block main_body %}
{% csrf_token %}
{# #} {{ form.search_text }} {{ form.category }}
{% for result in results %}
{% if form.category.value == 'alliance' %} {% elif form.category.value == 'corporation' %} {% else %} {% endif %}

{{ result.name }}

{% if result.ticker %}
<{{ result.ticker }}>
{% endif %} {% if result.security_status %}
Sec Status: {{ result.security_status }}
{% endif %}

{{ result.description|safe }}

Add Rights

{% endfor %}
{% endblock main_body %}