{% extends "base.html" %} {% load i18n %} {% comment %} buildhistory-web - warning list page template Copyright (C) 2013-2015 Intel Corporation Licensed under the MIT license, see COPYING.MIT for details {% endcomment %} {% block content %} {% autoescape on %} {% if user.is_authenticated %}
{% csrf_token %} {% endif %} {% if warning_list %} {% if user.is_authenticated %} {% endif %} {% for warningitem in warning_list %} {% ifchanged warningitem.build %} {% endifchanged %} {% if user.is_authenticated %} {% endif %} {% endfor %}
Summary Status
{% if warningitem.build.build_url %}{% endif %} Build {{ warningitem.build }} {% if warningitem.build.build_url %}{% endif %}
{{ warningitem.summary }} {% if warningitem.status == "N" %} {% endif %} {% if warningitem.status == "A" %} {% endif %} {% if warningitem.status == "I" %} {% endif %} {% if warningitem.status == "R" %} {% endif %} {{ warningitem.get_status_display }}
{% if is_paginated %} {% load pagination %} {% pagination page_obj %} {% endif %} {% if user.is_authenticated and perms.warningmgr.change_warningitem %}
Action:
{% endif %} {% else %} {% if reviewed %}

No warnings have been reviewed.

{% else %}

No warnings are in the queue.

{% endif %} {% endif %} {% endautoescape %} {% endblock %}