{% extends "base.html" %} {% load static %} {% 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 %}

All {% if label %}{{ label }}{% endif %} Issues {% if user %} by {{ user }} {% endif %}

All Issues {% if label %} {{ label }} × {% endif %} {% if user %} {{ user }} × {% endif %}
{% for activity in activities %} {% include "includes/_activity.html" %} {% endfor %}
{% if is_paginated %}

Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}

{% endif %}

Top Contributors

This Month's Leaders

{% for user in top_users|slice:":5" %}
{{ user.username }}'s avatar

{{ user.username }}

{{ user.points }} points

#{{ forloop.counter }}
{% endfor %}
{% if not top_users %}

No contributors yet this month

{% endif %}
{% endblock content %}