{% extends "base.html" %} {% load bootstrap3 %} {% block page_title %}Report - {{ report }} {% endblock %} {% block breadcrumbs %} {{ block.super }}
  • Reports
  • {{ report }}
  • {% endblock %} {% block content_title %} Report - {{ report }}{% endblock %} {% block content %}
    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 %}
    Are you sure you want to delete this Report?
    {% csrf_token %}
    {% else %}
    You do not have permission to delete this Report.
    {% endif %}
    {% endblock %}