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

Event Details: {{ event.event_id }}

{% with sectors=event.sectors %} {% include "sector_widget.html" %} {% endwith %} {% with sources=event.source obj_id=event.id obj_type=subscription.type %} {% include "sources_listing_widget.html" %} {% endwith %} {% with releasability=event.releasability %} {% include 'releasability_list_widget.html' %} {% endwith %}
ID {{ event.id }}
Title {{ event.title }}
Type {{ event.event_type }}
Created {{ event.created }}
Description {{ event.description }}
Status {{event.status}}
{% include 'details_options_widget.html' %} {% with bucket_list=event.bucket_list %} {% include 'bucket_list_widget.html' %} {% endwith %}
{% with obj=event obj_type=subscription.type %} {% include 'tickets_listing_widget.html' %} {% endwith %}
{% with hit=event col=COL_EVENTS %} {% 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" %}
{% with item=event %} {% include "services_analysis_section.html" with crits_type="Event" identifier=event.id %} {% endwith %} {% include 'services_tab_tabs_widget.html' %}
{{download_form.as_table}}
{% endif %} {% endblock %} {% block javascript_includes %} {% endblock %}