{% extends "base.html" %}
{% load bootstrap3 %}
{% block page_title %}Report - {{ report }} {% endblock %}
{% block breadcrumbs %} {{ block.super }}
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 and perms.is_admin %}
{% bootstrap_icon "trash" %} Delete this Report
{% bootstrap_icon "tasks" %} Process this Report
{% endif %}
{% for repo in report.repos.splitlines %}
{{ repo }} |
{% endfor %}
{% if report.modules %}
{% for module in report.modules.splitlines %}
{{ module }} |
{% endfor %}
{% endif %}
{% if report.sec_updates %}
{% for update in report.sec_updates.splitlines %}
{{ update }} |
{% endfor %}
{% endif %}
{% if report.bug_updates %}
{% for update in report.bug_updates.splitlines %}
{{ update }} |
{% endfor %}
{% endif %}
{% for package in report.packages.splitlines %}
{{ package }} |
{% endfor %}
{% endblock %}