{%- extends "base.html" -%} {%- from "_formhelpers.html" import colorize_severity, colorize_status, bug_ticket -%} {% block content %}

{% if heading %}{{ heading }}{% else %}Confirm{% endif %}

{{ form.hidden_tag() }}
{%- if groups %}

References

{%- for group in groups %} {%- endfor %}
Group Package Severity Status Ticket Issue
{{ group.name }} {%- for pkgname in group_packages[group] %} {{ pkgname }}{% if not loop.last %}, {% endif %} {%- endfor %} {{ colorize_severity(group.severity) }} {{ colorize_status(group.status) }} {{ bug_ticket(group.bug_ticket) }} {%- for group_issue in group_issues[group] %} {{ group_issue }}{% if not loop.last %}, {% endif %} {%- endfor %}
{%- endif %}
Are you sure you want to delete {{ issue }}?

{{ form.confirm(class='button-primary') }} {{ form.abort(class='button-primary', accesskey='c') }}
{%- endblock %}