{% extends "base_dashboard.html" %} {% load static %} {% block content %}
{% include "includes/organization_sidenav.html" %}

Ongoing Hunt

{% if ongoing_hunt %} {% for hunt in ongoing_hunt %}
{{ hunt.url }}

{{ hunt.prize }}$

{% endfor %} {% else %}
no ongoing hunts ! {% endif %}

Upcoming Hunt

{% if upcoming_hunts %} {% for hunt in upcoming_hunts %}
{{ hunt.url }}

{{ hunt.prize }}$

{% endfor %} {% else %}
no upcoming hunts ! {% endif %}

Previous Hunt

{% if previous_hunt %} {% for hunt in previous_hunt %}
{{ hunt.url }}

{{ hunt.prize }}$

{% endfor %} {% else %}
no previous hunts ! {% endif %}
{% endblock content %}