{% extends "base.html" %} {% load static %} {% load i18n %} {% block title %}bounties Dashboard - Bug Bounties & Issue Bounties{% endblock %} {% block description %} Find bug bounty programs and GitHub issue bounties. Track your progress and view details of each opportunity. {% endblock %} {% block keywords %} Hunt Dashboard, bug bounties, issue bounties, GitHub issues, bughunt, hunt details, bounty programs {% endblock %} {% block og_title %}Hunt Dashboard - Bug Bounties & Issue Bounties{% endblock %} {% block og_description %} Find bug bounty programs and GitHub issue bounties. Track your progress and view details of each opportunity. {% endblock %} {% block content %} {% include "includes/sidenav.html" %}

{% trans "Filter Results" %}

to

Github Issue Bounties

{% if github_issues %}
{% for issue in github_issues %}

{{ issue.title }}

{{ issue.state|title }}
Issue #{{ issue.number }} • Opened by {{ issue.user }} • Created {{ issue.created_at|date:"M d, Y" }} {% if issue.closed_at %}• Closed {{ issue.closed_at|date:"M d, Y" }}{% endif %}
{% for label in issue.labels %} {{ label }} {% endfor %}
{% if issue.related_prs %}

Related Pull Requests:

{% for pr in issue.related_prs %} {% endfor %}
{% endif %}
{% endfor %}
{% else %}

No GitHub issues with $5 label found

Issues will appear here when available.

{% endif %}

Bug Bounties

{% for hunt in hunts %}

HUNT

{{ hunt.name }} Logo

{{ hunt.name }}

{{ hunt.starts_on|date:"F" }} {{ hunt.starts_on__day }} {{ hunt.starts_on__year }} - {{ hunt.end_on|date:"F" }} {{ hunt.end_on__day }} {{ hunt.end_on__year }}

{% if hunt.total_prize %} ${{ hunt.total_prize }} {% else %} Prize details available in full description {% endif %}

{% empty %}

No Bug Bounty programs found

Check back later for new opportunities

{% endfor %}
{% endblock content %}