{% extends "main.html" %} {% load url from future %} {% block title %}Reports {{ repo }} {% endblock %} {% block content_title %}Report Information{% endblock %} {% block breadcrumbs %}{{ block.super }} › Reports › {{ report }} {% endblock %} {% block content %}

{{report}}

Host {{ report.host }}
Reporting IP Address {{ report.report_ip }}
Domain {{ report.domain }}
Running Kernel {{ report.kernel }}
Reboot Required? {{ report.reboot }}
OS {{ report.os }}
Arch {{ report.arch }}
Tags {{ report.tags }}
Client Protocol {{ report.protocol }}
User Agent {{ report.useragent }}
Has Been Processed? {{ report.processed }}
{% if user.is_authenticated %} {% if perms.is_admin %}

Actions

Delete this report Process this report
{% endif %} {% endif %} {% if report.sec_updates %}

Security Updates

{% for update in report.sec_updates.splitlines %} {% endfor %}
{{ update }}
{% endif %} {% if report.bug_updates %}

Bugfix Updates

{% for update in report.bug_updates.splitlines %} {% endfor %}
{{ update }}
{% endif %}

Repositories

{% for repo in report.repos.splitlines %} {% endfor %}
{{ repo }}

Packages

{% for package in report.packages.splitlines %} {% endfor %}
{{ package }}
{% endblock %}