{% extends "company/company_dashboard_base.html" %} {% block title %} Manage Bugs {% endblock title %} {% block body %}

Manage Bughunts

{% if bughunts %} {% for hunt in bughunts %} {% if hunt.result_published %} {% else %} {% endif %} {% endfor %} {% else %} {% endif %}

Bughunts

Filter, view, edit or delete. Manage your bughunts easily

Hunt Start Date End Date Status View Edit
{{ hunt.name }} {{ hunt.starts_on__day }}/{{ hunt.starts_on__month }}/{{ hunt.starts_on__year }} {{ hunt.end_on__day }}/{{ hunt.end_on__month }}/{{ hunt.end_on__year }} {% if not hunt.is_published %}

Draft

{% elif not hunt.result_published %}

Ongoing

{% else %}

Ended

{% endif %}
View Edit Edit
No Bughunts found
{% endblock body %} {% block js %} {% endblock js %}