{% extends "base_dashboard_company.html" %} {% load static %} {% block content %}

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 %}