{% extends "base.html" %} {% load static %} {% load humanize %} {% block title %} All Issues {% endblock title %} {% block description %} Browse through all reported issues. Filter by label and user to find specific issues and track progress. {% endblock description %} {% block keywords %} All Issues, Reported Issues, Issue Tracking, Filter Issues, User Issues, Label Issues {% endblock keywords %} {% block og_title %} All Issues - Track and Browse Reported Issues {% endblock og_title %} {% block og_description %} Explore all reported issues. Filter by label and user to efficiently find and track the progress of specific issues. {% endblock og_description %} {% block content %} {% include "includes/sidenav.html" %}

Latest Bugs

Track and manage reported issues across all domains

{% for bug in bugs %} {% include "includes/_bug.html" %} {% endfor %}
{% if bugs.paginator %}
{% if bugs.has_previous %} Previous {% endif %} {% if bugs.has_next %} Next {% endif %}
{% endif %}

Leaderboard

{% include "includes/_leaderboard_widget.html" %}
{% endblock content %}