{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block content %}

Bug Reports

{% if user %} {% endif %}
{% for item in bugs %}
{% set _user = item.author %}{% set _size = 24 %}{% set _size_class = "sm" %}{% include "_avatar_link.html" %} {{ item.bug['title'] }} {{ item.bug['status'] }}
{{ item.bug['description'][:300] }}
{{ item.author['username'] if item.author else 'Unknown' }} · {{ item.time_ago }}
{% set b_attachments = item.get('attachments', []) %} {% if b_attachments %} {% with attachments=b_attachments %} {% include "_attachment_display.html" %} {% endwith %} {% endif %} {% with target_uid=item.bug['uid'], target_type="bug", comments=item.comments %} {% include "_comment_section.html" %} {% endwith %}
{% else %}
No bug reports yet.
{% endfor %}
{% if user %} {% endif %} {% endblock %}