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

Summary

{% if indicator.ind_type == 'URI - Domain Name' %} {% with sectors=indicator.sectors %} {% include "sector_widget.html" %} {% endwith %} {% with sources=indicator.source obj_id=indicator_id obj_type=subscription.type %} {% include "sources_listing_widget.html" %} {% endwith %} {% with releasability=indicator.releasability %} {% include 'releasability_list_widget.html' %} {% endwith %}
ID {{ indicator.id }}
Type {{indicator.ind_type}}
Value {{ indicator.value }} {% elif indicator.type == 'Address - e-mail' %}
Value {{ indicator.value }} {% elif indicator.type == 'Address - ipv4-addr' or indicator.type == 'Address - ipv6-addr'%}
Value {{ indicator.value }} {% else %}
Value {{ indicator.value }} {% endif %} {% if splunk_search_url %} {% endif %}
Creation Date {{ indicator.created }}
Last Modified {{ indicator.modified }}
Confidence
Impact
Status {{indicator.status}}
{% include 'details_options_widget.html' %} {% with bucket_list=indicator.bucket_list %} {% include 'bucket_list_widget.html' %} {% endwith %}

Actions

{% if indicator.actions %} {% else %} {% endif %} {% with indicator_id=indicator.id %} {% for action in indicator.actions %} {% include 'indicators_action_row_widget.html' %} {% endfor %} {% endwith %}
Type Begin End Performed Active Reason Date Added Analyst
{% with obj=indicator obj_type=subscription.type %} {% include 'tickets_listing_widget.html' %} {% endwith %}
{% with hit=indicator col=COL_INDICATORS obj=indicator %} {% include "campaigns_display_widget.html" %} {% endwith %}

Activity

{% if indicator.activity %} {% else %} {% endif %} {% with indicator_id=indicator.id %} {% for activity in indicator.activity %} {% include "indicators_activity_row_widget.html" %} {% endfor %} {% endwith %}
Description Start Date End Date Date Added Analyst
{% include 'relationships_listing_widget.html' %}
{% include 'objects_listing_widget.html' %}
{% include 'screenshot_widget.html' %}
{% include "comments_listing_widget.html" %}
{% with item=indicator %} {% include "services_analysis_section.html" with crits_type="Indicator" identifier=indicator.id %} {% endwith %} {% include 'services_tab_tabs_widget.html' %}
{{forms.download_form.as_table}}
{{ forms.new_action.as_table }}
{{ forms.new_activity.as_table }}
{% else %}

Missing indicator.

{% endif %} {% endblock %} {% block javascript_includes %} {% comment %} Moved relationship setup here, so we can get dialogs to init {% endcomment %} {% endblock %}