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

Certificate Details

{% if cert.description %} {% else %} {% endif %} {% with sectors=cert.sectors %} {% include "sector_widget.html" %} {% endwith %} {% with sources=cert.source obj_id=cert.id obj_type=subscription.type %} {% include "sources_listing_widget.html" %} {% endwith %} {% with releasability=cert.releasability %} {% include 'releasability_list_widget.html' %} {% endwith %}
ID {{ cert.id }}
Filename {{ cert.filename }}
Filetype {{ cert.filetype }}
Created {{ cert.created }}
Size {{ cert.size }}
MD5 {{ cert.md5 }}
Description {{cert.description}} None
Status {{cert.status}}
{% include 'details_options_widget.html' %} {% with bucket_list=cert.bucket_list %} {% include 'bucket_list_widget.html' %} {% endwith %}
{% with obj=cert obj_type=subscription.type %} {% include 'tickets_listing_widget.html' %} {% endwith %}
{% with hit=cert col=COL_CERTIFICATES %} {% 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=cert %} {% include "services_analysis_section.html" with crits_type="certificate" identifier=cert.md5 %} {% endwith %} {% include 'services_tab_tabs_widget.html' %}
{% else %}

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

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