{% extends "base.html" %} {% load static %} {% load gravatar %} {% load socialaccount %} {% load humanize %} {% providers_media_js %} {% load i18n %} f {% block content %} {% load custom_tags %}

{% trans "Latest activity" %}

{% for activity in activities %} {% include "_activity.html" %} {% endfor %}
{% trans "View All Activity" %}
{% now "F" %} {% trans "Leaderboard" %}

{% trans "The 1st Place Hunter for" %} {% now "F" %} {% trans "will receive" %}
{% trans "No sponsored prizes this month" %}
{% if leaderboard %} {% for leader in leaderboard %}
{% if leader.userprofile.avatar %} Profile Image {% elif user.socialaccount_set.all.0.get_avatar_url %} Profile Image {% else %} Profile Image {% endif %} {{ leader.username|truncatechars:20 }}
{{ leader.total_score }} {% trans "Points" %}
{{ forloop.counter|ordinal }}
{% endfor %} {% else %}
{% trans "Leaderboard reset for" %} {% now "F" %}. {% trans "Be first to find issues" %}! {% endif %}
{% trans "View All" %} {% trans "Filter Monthly" %} {% trans "View Monthly" %}

{% trans "Find Bugs, Win Points and Prizes" %}


  • {% trans "Fix issues on websites, apps or hardware (+3 points)" %}

  • {% trans "Verify other bug reports(+2 points)" %}

  • {% trans "Invite friends (when they signup , get +1 point)" %}

  • {% trans "Find a bug on a new site or app (+4 points)" %}

{% trans "Number Error" %}

{% trans "For pages where you see a number 404, 500." %}

{% trans "Functional" %}

{% trans "Something doesn't work as intended" %}

{% trans "Performance" %}

{% trans "Any process that takes over 5 seconds." %}

{% trans "Security" %}

{% trans "Data leaks, exploits or anything smelly." %}

{% trans "Typo" %}

{% trans "Miss-spellings, miss-grammar and more." %}

{% trans "Design" %}

{% trans "Layout, responsiveness and improvements" %}

{% trans "Server Down" %}

{% trans "500 Server Error and Downtime" %}

{{ bug_count }} {% trans "Bugs" %}

{{ user_count }} {% trans "Users" %}

{{ hunt_count }} {% trans "Hunts" %}

{{ domain_count }} {% trans "Domains" %}

{% if ended_hunts %}

{% trans "ENDED HUNTS" %}

{% trans "View Ongoing Hunts" %}
{% else %}

{% trans "LATEST HUNTS" %}

{% endif %}
{% if top_hunts %} {% for hunt in top_hunts %}

{% trans "LATEST" %}

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

{{ hunt.total_prize }}

{% endfor %} {% else %}

{% trans "No ongoing hunt's found" %}.

{% endif %}

{% trans "LEADER BOARDS" %}

{% trans "TOP COMPANY" %}

{% for company in top_companies %}

{{ forloop.counter }}

{{ company.domain__name }}

{{ company.count }}

{% trans "SUBMIT A BUG" %}
{% endfor %}

{% trans "TOP TESTER" %}

{% for tester in top_testers %}

{{ forloop.counter }}

{{ tester.user__username }}

{{ tester.count }}

{% trans "VIEW PROFILE" %}
{% endfor %}

{% env 'PROJECT_NAME' %} is 100% {% trans "free to use" %}, {% trans "Open Source and a non-commercial" %}, {% trans "not for profit initiative" %}.

{% endblock content %}