{%- extends "base.html" -%}
{%- from "_formhelpers.html" import colorize_severity, colorize_status, colorize_remote, colorize_unknown, nullable_value, bug_ticket -%}
{% block content %}
{{ issue.id }}
{%- if can_watch_log %} log{% endif %}
{%- if can_edit %} edit{% endif %}
{%- if can_edit %} copy{% endif %}
{%- if can_delete %} delete{% endif %}
| Source |
|
| Severity |
{{ colorize_severity(issue.severity) }} |
| Remote |
{{ colorize_remote(issue.remote) }} |
| Type |
{{ colorize_unknown(issue.issue_type|capitalize) }} |
| Description |
{{ nullable_value(issue.description)|urlize }} |
{%- if groups %}
| Group |
Package |
Affected |
Fixed |
Severity |
Status |
Ticket |
{%- for group in groups %}
| {{ group.name }} |
{%- for pkgname in group_packages[group] %}
{{ pkgname }}{% if not loop.last %}, {% endif %}
{%- endfor %}
|
{{ group.affected }} |
{{ group.fixed }} |
{{ colorize_severity(group.severity) }} |
{{ colorize_status(group.status) }} |
{{ bug_ticket(group.bug_ticket) }} |
{%- endfor %}
{%- endif %}
{%- if advisories %}
{%- endif %}
{%- if issue.reference %}
| References |
{{ issue.reference|urlize }} |
{%- endif %}
{%- if issue.notes %}
| Notes |
{{ issue.notes|urlize }} |
{%- endif %}
{%- endblock %}