{% extends "organization/organization_dashboard_base.html" %} {% load static %} {% block title %} Manage Bugs {% endblock title %} {% block description %} Keep track of and manage all bugs in your system. View, filter, and update bug statuses easily to ensure smooth operations. {% endblock description %} {% block keywords %} Manage Bugs, Bug Tracking, Bug Management, View Bugs, Update Bug Status, Filter Bugs {% endblock keywords %} {% block og_title %} Manage Bugs - Efficient Bug Tracking and Management {% endblock og_title %} {% block og_description %} View and manage all bugs in your system. Easily filter, view, and update bug statuses to maintain efficient operations. {% endblock og_description %} {% block body %}

Manage Bugs

{% if issues %} {% for issue in issues %} {% endfor %} {% else %} {% endif %}

Bugs

Description Created On Bug Type Status View
{{ issue.description|slice:":25" }}... {{ issue.created|date:"F j, Y" }} {{ issue.get_label_display }} {% if issue.status == 'open' %} Open {% else %} Closed {% endif %} View
No Issues Found
{% endblock body %}