{% extends "base.html" %} {% load static %} {% load custom_filters %} {% block head %} Hunt Info {% endblock head %} {% block style %} {% endblock style %} {% block content %} {% include "includes/sidenav.html" %}
banner
logo

{{ hunt_obj.name }}

{% if is_hunt_manager and not hunt_obj.result_published %} End Bughunt {% elif not is_hunt_manager and not hunt_obj.result_published %} Back Submit Bug {% endif %}

BugHunt Info

  • Hunt: {{ hunt_obj.name }}
  • Url {{ hunt_obj.url }}
  • Domain {{ hunt_obj.domain.name }}
  • Starts On: {{ hunt_obj.starts_on.day }} / {{ hunt_obj.starts_on.month }} / {{ hunt_obj.starts_on.year }}
  • Ends On: {{ hunt_obj.end_on.day }} / {{ hunt_obj.end_on.month }} / {{ hunt_obj.end_on.year }}
  • Status: {% if hunt_obj.result_published %} ENDED {% else %} ONGOING {% endif %}

Activity log

BugHunt created at: {{ hunt_obj.created|date:"d/m/Y" }}

{{ hunt_obj.created|timesince }} ago

Last modification in BugHunt: {{ hunt_obj.modified|date:"d/m/Y" }}

{{ hunt_obj.modified|timesince }} ago

{% if first_bug %}

First bug in this BugHunt: {{ first_bug.created|date:"d/m/Y" }}

{{ first_bug.created|timesince }} ago

{% endif %} {% if last_bug %}

Last bug created in this BugHunt: {{ last_bug.created|date:"d/m/Y" }}

{{ last_bug.created|timesince }} ago

{% endif %}

Statistics

Total Rewarded
${{ stats.total_rewarded }}
Total Bugs
{{ stats.total_bugs }}
Accepted Bugs
{{ stats.total_bug_accepted }}

BUGHUNT WINNERS

{% for winner in winners %}
QR Code

{% endfor %}
Winner Prize Amount Action
avatar
{{ winner.winner.username }}
{{ winner.winner.email }}
{{ winner.prize.name }} {{ winner.prize.value }}

Description

Rewards

{% for reward in rewards %}
{{ reward.name }}
$ {{ reward.value }}
  • {% if reward.valid_submissions_eligible %} Each Accepted Bug will recieve ${{ reward.value }} {% else %} Top {{ reward.no_of_eligible_projects }} Users {% endif %}
  • {% if reward.prize_in_crypto %}
  • Prize paid in cryptocurrency
  • {% endif %}
{% endfor %}

Latest Bugs Reported ({{ latest_issues|length }})

View all
{% if latest_issues|length > 0 %} {% for issue in latest_issues %}
Reported to {{ issue.domain__name }} on {{ issue.created|date:"d/m/Y" }}
#{{ issue.label }} #{{ issue.status }} {% if issue.verified %} #Accepted # ${{ issue.rewarded }} {% endif %} {% if is_hunt_manager and issue.user__id and not issue.verified and not hunt_obj.result_published %} {% endif %}
{% endfor %} {% else %}

No bugs reported

{% endif %}

Top Testers ({{ top_testers | length }})

{% for tester in top_testers %}
Avatar

{{ tester.user__username }}

Reported {{ tester.count }} Bugs

{% endfor %}
{% endblock content %}