{% extends "base.html" %} {% load url from future %} {% block title %}Domain Details{% endblock %} {% block css_includes %} {% endblock %} {% block content %}

Details for {{ domain.domain }}

{% with sectors=domain.sectors %} {% include "sector_widget.html" %} {% endwith %} {% with sources=domain.source obj_id=domain.id obj_type=subscription.type %} {% include "sources_listing_widget.html" %} {% endwith %} {% with releasability=domain.releasability %} {% include "releasability_list_widget.html" %} {% endwith %}
ID {{domain.id}}
Created {{domain.created}}
DNSMon Enabled {{domain.watchlistEnabled|default:"False"}}
Status {{domain.status}}
{% include 'details_options_widget.html' %} {% with bucket_list=domain.bucket_list %} {% include 'bucket_list_widget.html' %} {% endwith %}
{% if samples %}

Matching Samples

{% with sample_list=samples %} {% include 'samples_malware_mini_widget.html' %} {% endwith %}
{% endif %}
{% with obj=domain obj_type=subscription.type %} {% include 'tickets_listing_widget.html' %} {% endwith %}
{% with hit=domain col=COL_DOMAINS %} {% 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" %}

Whois for {{ domain.domain }}

{% if forms.whois %}
{{ forms.whois.as_table }}
Note: WHOIS parsing is best effort and may require manual editing after saving. See the "raw" view for the original data entered.
{% endif %}

Raw Whois for {{domain.domain}}

{% if forms.raw_whois %}
{{ forms.raw_whois.as_table }}
{% endif %}

Diff Whois for {{domain.domain}}

{% if forms.diff_whois %}
{{forms.diff_whois.as_table}}
{% endif %}
{% with item=domain %} {% include "services_analysis_section.html" with crits_type="Domain" identifier=domain.id %} {% endwith %} {% include 'services_tab_tabs_widget.html' %}
{% endblock %} {% block javascript_includes %} {% endblock %}