{% extends "base.html" %} {% load url from future %} {% block title %} PCAP Detail {% endblock %} {% block content %} {% if pcap %}

PCAP Details

{% if pcap.description %} {% else %} {% endif %} {% with sectors=pcap.sectors %} {% include "sector_widget.html" %} {% endwith %} {% with sources=pcap.source obj_id=pcap.id obj_type=subscription.type %} {% include "sources_listing_widget.html" %} {% endwith %} {% with releasability=pcap.releasability %} {% include 'releasability_list_widget.html' %} {% endwith %}
ID {{ pcap.id }}
Filename {{ pcap.filename }}
Created {{ pcap.created }}
Length {{ pcap.length }}
MD5 {{ pcap.md5 }}
Description {{pcap.description}} None
Status {{pcap.status}}
{% include 'details_options_widget.html' %} {% with bucket_list=pcap.bucket_list %} {% include 'bucket_list_widget.html' %} {% endwith %}
{% with obj=pcap obj_type=subscription.type %} {% include 'tickets_listing_widget.html' %} {% endwith %}
{% with hit=pcap col=COL_PCAPS %} {% include "campaigns_display_widget.html" %} {% endwith %}
{% include 'relationships_listing_widget.html' %}
{% include 'objects_listing_widget.html' %}
{% include 'screenshot_widget.html' %}
{% include "comments_listing_widget.html" %}
{% with item=pcap %} {% include "services_analysis_section.html" with crits_type="PCAP" identifier=pcap.md5 %} {% endwith %} {% include 'services_tab_tabs_widget.html' %}
{% else %}

PCAP not found. If you just uploaded a PCAP, try refreshing as the system might not have completed processing your upload yet.

{% endif %} {% endblock %} {% block javascript_includes %} {% endblock %}