{% extends "base_dashboard.html" %} {% load static %} {% block title %} Report a Bug {% endblock title %} {% block description %} Report a bug by providing the website URL, detailed description, and category. Upload a screenshot to help with the bug resolution process. {% endblock description %} {% block keywords %} Report a Bug, Bug Reporting, Website URL, Bug Description, Bug Category, Upload Screenshot {% endblock keywords %} {% block og_title %} Report a Bug - Help Improve Software Quality {% endblock og_title %} {% block og_description %} Report a bug by providing the necessary details such as website URL, description, and category. Upload a screenshot to aid in the bug resolution process. {% endblock og_description %} {% load custom_tags %} {% load gravatar %} {% load socialaccount %} {% load humanize %} {% providers_media_js %}
{% include "includes/user_sidenav.html" %}
{% endblock style %} {% block content %} {% block content %}
{% csrf_token %}

Report a Bug


{% include "includes/user_sidenav.html" %}
{% if form.url.errors %}{{ form.url.errors }}{% endif %}
{% if form.description.errors %}{{ form.description.errors }}{% endif %}
{% if request.GET.hash %} screenshot {% else %}
{% if form.screenshot.errors %}{{ form.screenshot.errors }}{% endif %} {% endif %}
{% if issue_list %}
{% for issue in issue_list %} {% endfor %}
Report Summary
ID URL Description Type
{{ forloop.counter }} {{ issue.url }} {{ issue.description }} {{ issue.get_label_display }}
{% endif %} {% endblock content %} {% endblock body %}