{% extends "base.html" %} {% load url from future %} {% load filters %} {% block title %} Raw Data Details {% endblock %} {% block content %} {% if raw_data %}

"{{ raw_data.title }}" Details

{% if raw_data.tool.name %} {% else %} {% endif %} {% if raw_data.tool.details %} {% else %} {% endif %} {% if raw_data.description %} {% else %} {% endif %} {% with sectors=raw_data.sectors %} {% include "sector_widget.html" %} {% endwith %} {% with sources=raw_data.source obj_id=raw_data.id obj_type=subscription.type %} {% include "sources_listing_widget.html" %} {% endwith %} {% with releasability=raw_data.releasability %} {% include 'releasability_list_widget.html' %} {% endwith %}
ID {{ raw_data.id }}
Created {{ raw_data.created }}
Tool {{raw_data.tool.name}} None
Tool Version {{ raw_data.tool.version }}
Tool Details {{raw_data.tool.details}} None
Data Type {{raw_data.data_type}}
Version
Description {{raw_data.description}} None
Status {{raw_data.status}}
{% include 'details_options_widget.html' %} {% with bucket_list=raw_data.bucket_list %} {% include 'bucket_list_widget.html' %} {% endwith %}
{% include 'raw_data_data.html' %}
{% with obj=raw_data obj_type=subscription.type %} {% include 'tickets_listing_widget.html' %} {% endwith %}
{% with hit=raw_data col=COL_RAW_DATA %} {% 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" %}
{% include 'raw_data_highlights.html' %}

Data

{{ raw_data.data|cgi_escape }}
{% include 'raw_data_versions.html' %} {% with item=raw_data %} {% include "services_analysis_section.html" with crits_type="RawData" identifier=raw_data.id %} {% endwith %} {% include 'services_tab_tabs_widget.html' %}
{% else %}

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

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