{% extends 'base.html' %} {% load bootstrap %} {% block content %}

{{ title }}

{% csrf_token %} {% if target_type_display or target_identifier %}
type
{{ target_type_display }}
identifier
{{ target_identifier }}
{% endif %} {% for file in files %}
name
{{ file.name }}
path
{{ file.path }}
{% if file.bundle %}
bundle id
{{ file.bundle.bundle_id }}
bundle name
{{ file.bundle.bundle_name }}
bundle version
{{ file.bundle.bundle_version_str }}
{% if file.bundle_path %}
bundle path
{{ file.bundle_path }}
{% endif %} {% endif %}
{% endfor %} {% if bundle %}
id
{{ bundle.bundle_id }}
name
{{ bundle.name }}
version
{{ bundle.version_str }}
binaries
{{ bundle.binary_targets.count }}
{% endif %} {% for cert in certificates %}
common name
{{ cert.common_name|default:"-" }}
organization
{{ cert.organization|default:"-" }}
organizational_unit
{{ cert.organizational_unit|default:"-" }}
validity
{{ cert.valid_from }} - {{ cert.valid_until }}
{% endfor %} {% for team_id in team_ids %}
Organization
{{ team_id.organization|default:"-" }}
{% endfor %} {{ form|bootstrap }} Cancel
{% endblock %}