{% extends "base_dashboard.html" %} {% load static %} {% block title %} Hunt Results - {{ hunt.domain.organization.name }} - {% env 'PROJECT_NAME' %} Dashboard {% endblock title %} {% block description %} View the results of the hunt in the {% env 'PROJECT_NAME' %} dashboard. Check the top winners and manage results if not published yet. {% endblock description %} {% block keywords %} {% env 'PROJECT_NAME' %}, hunt, results, publish, winner, runner, second runner, dashboard, organization, domain {% endblock keywords %} {% block og_title %} Hunt Results - {{ hunt.domain.organization.name }} - {% env 'PROJECT_NAME' %} Dashboard {% endblock og_title %} {% block og_description %} View the published results of the hunt or manage the results before publishing in the {% env 'PROJECT_NAME' %} dashboard. {% endblock og_description %} {% block content %} {% load static %}
{% include "includes/organization_sidenav.html" %}
{% if hunt.result_published %} {% if winner.winner %} {% endif %} {% if winner.runner %} {% endif %} {% if winner.second_runner %} {% endif %}
id name
1 {{ winner.winner }}
2 {{ winner.runner }}
3 {{ winner.second_runner }}
{% else %}
{% csrf_token %} {% for issue in issues %} {% endfor %}
id points description type
{{ forloop.counter }} {{ issue.description }} {{ issue.get_label_display }}
{% endif %} {% endblock content %}