{% extends "base.html" %} {% block comments %} {% endblock %} {% block title %}App Framework: Edit and Add PCAP Files{% endblock %} {% block header_row %}

Edit and add PCAP Files

Click on PCAP File link to update description.
Click on Add New PCAP File to upload new data.
{% endblock %} {% load pcapmgr_extra %} {% block content %}
{% if not tabledata %} {% endif %} {% for datafile in tabledata %} {% endfor %}
Description PCAP File Upload Time File Type Start Time End Time Total Packets Total Packet Bytes
No files uploaded yet.
{{ datafile.description }} {{ datafile.datafile.url|filename }} {{ datafile.uploaded_at }} {{ datafile.file_type }} {{ datafile.start_time }} {{ datafile.end_time }} {{ datafile.pkt_count }} {{ datafile.packet_bytes }}
{% if supported_files %}

This PCAP file manager supports the following PCAP types: {{supported_files}}

{% endif %} {% if pcap_lib_warning %}

Accurate Start Time, End Time, Total Packets, and Total Packet Bytes data requires installing steelscript.packets.

{% endif %}
{% endblock %}