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

Details

{% with sectors=target_detail.sectors %} {% include "sector_widget.html" %} {% endwith %} {% with releasability=target_detail.releasability %} {% include "releasability_list_widget.html" %} {% endwith %}
ID {% if target_detail.id %} {{target_detail.id}} {% else %} This is a new UNSAVED Target. Please edit details to save the Target and generate an ID. {% endif %}
Name {{target_detail.firstname}} {{target_detail.lastname}}
Email Address {{target_detail.email_address}}
Organization ID {{target_detail.organization_id}}
Department {{target_detail.department}}
Division {{target_detail.division}}
Title {{target_detail.title}}
Notes {{target_detail.note}}
Status {{target_detail.status}}
{% if target_detail.id %}
{% include 'details_options_widget.html' %} {% with bucket_list=target_detail.bucket_list %} {% include 'bucket_list_widget.html' %} {% endwith %}
{% with obj=target_detail obj_type=subscription.type %} {% include 'tickets_listing_widget.html' %} {% endwith %}
{% with hit=target_detail col=COL_TARGETS obj=target_detail %} {% 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' %}
{% endif %}
{% include 'email_listing_widget.html' %}
{% if target_detail.id %} {% include 'services_tab_tabs_widget.html' %}
{% endif %}
{{ form.as_table }}
{% endblock %} {% block javascript_includes %} {% endblock %}