{% extends "organization/organization_dashboard_base.html" %} {% load static %} {% block title %} Manage Bughunts {% endblock title %} {% block description %} Easily manage your bughunts. Filter, view, edit, or delete hunts as needed. Access all your bughunts in one place. {% endblock description %} {% block keywords %} Manage Bughunts, Bughunt Management, Online Contest, Filter Bughunts, Edit Bughunt, View Bughunt, Delete Bughunt {% endblock keywords %} {% block og_title %} Manage Bughunts - Easily Handle Your Online Contests {% endblock og_title %} {% block og_description %} Access and manage all your bughunts effortlessly. Filter by status, view details, and edit or delete hunts with ease. {% endblock og_description %} {% 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 %}