{% extends "waiving/result.html" %} {% load humanize %} {% load i18n %} {% load utils %} {% block waiver %}
Expand all Collapse all Show all trace events Hide all trace events

{{ active_group.checker_group.name }}

{% for defect in defects %}
Expand Collapse

{{ defect.order }}. Defect type: {{ defect.checker.name }}

{% comment %} {% if check.cwe %} {{ checker.cwe }} {% endif %} {% endcomment %}
{% for event in defect.events %}
{% else %} {% if event.verbosity_level %} class="level_{{ event.verbosity_level }}"> {% else %} class="defect_event" style="display: none;"> {% endif %} {% endif %} {% if event.line == 0 and not event.file_name and event.event == '#' %}
{{ event.event }} {{ event.message }}
{% else %} {{ forloop.counter }}. {{ event.file_name }}:{{ event|line_and_column }}: {{ event.event }}: {{ event.message }} {% endif %}
{% endfor %}
{% endfor %} Expand all Collapse all Go to top
{% if display_waivers %} {% if waiving_logs %}

Waiving log ({{ waiving_logs.count }})

{% for wl in waiving_logs %}
{% else %} {% if wl.waiver.result_group.has_waiver and wl.waiver.result_group.has_waiver.id == wl.waiver.id %} class="waiving_log wl_type_{{ wl.get_state_display }}"> {% else %} class="waiving_log wl_type_{{ wl.get_state_display }} transparent"> {% endif %} {% endif %} {{ wl.waiver.get_display_type }} {% if not wl.waiver.is_comment %}waiver{% endif %} submitted by {{ wl.waiver.user }} {{ wl.waiver.date|naturaltime }} ({{ wl.waiver.date|date:"Y-m-d H:i:s" }}). ΒΆ {% if wl.waiver.is_deleted %} Expand Collapse {% else %} Collapse Expand {% endif %} {% if wl.get_state_display != "DELETE" and not wl.waiver.is_deleted and user.is_authenticated %} Invalidate {% endif %} {% if wl.waiver.is_deleted %} {% endfor %}
{% endif %} {% endif %} {# display_waivers #} {% if waivers_place and matching_waiver %}
This group has been waived in run: {{ waivers_place }}
{{ matching_waiver.message }}
{% endif %} {% if user.is_authenticated %} {% if display_form %}
{% csrf_token %} {{ form.as_p }}
{% if defects_list_class == "new" %} {% endif %}
{% if waiver_type_helpers %}
    {% for w_type, text in waiver_type_helpers %}
  • {{ w_type }}
    {{ text }}
  • {% endfor %} {% endif %}
{% else %}{% if form_message %}

{{ form_message }}

{% endif %} {% endif %}{# display_form #} {% else %}

You have to log in if you want to waive.

{% endif %} {# user_is_auth #} {% if previous_waivers %}

This group has been waived in a past with these waivers:

{% for w in previous_waivers %}
{{ w.get_display_type }} Waiver for build {{ w.result_group.result.scanbinding.scan.nvr}} submitted by {{ w.user.username }} {{ w.date|naturaltime }} ({{ w.date|date:"Y-m-d H:i:s" }}):
{{ w.message }}
{% endfor %} {% endif %}
{% endblock %}