{% extends "base.html" %} {% set active_page = "bugs" %} {% block title %}Bugs{% endblock %} {% block content %}

Bugs

All Open Fixed In Progress
{% if not bugs %}
No bugs found
{% else %}
{% for bug in bugs %} {% set project = projects_map.get(bug.project_id) %}
{{ bug.severity | upper }} {{ bug.status | replace('_', ' ') | title }} {{ bug.bug_id }}
{{ bug.created_at | timeago }}

{{ bug.title }}

{% if project %}
{{ project.title[:60] }} {% if bug.component %} {{ bug.component }} {% endif %}
{% endif %} {% if bug.description %}
{{ bug.description[:500] }}
{% endif %} {% if bug.root_cause %}
Root Cause Analysis
{{ bug.root_cause }}
{% endif %} {% if bug.fix_summary %}
Fix Applied
{{ bug.fix_summary[:2000] }}
{% endif %}
{% if bug.pr_url %} Pull Request {% endif %} {% if bug.sentry_issue_id %} Sentry #{{ bug.sentry_issue_id }} {% endif %} {% if bug.assigned_to %} Assigned: {{ bug.assigned_to }} {% endif %}
{% endfor %}
{% endif %} {% endblock %}