{% extends 'core/base.html' %} {% block title %}{{ title }} - {{ module_title }} | Killian{% endblock %} {% block content %}

{{ title }}

{{ record_label }} · Read-only details

{% if reveal_url and can_reveal %} {% if not item.restricted or can_restricted %} Reveal secrets {% endif %} {% endif %} {% if download_url %}Download{% endif %} {% if can_change %}Edit{% endif %} Back

{{ record_label }} details

Read-only
{% for row in detail_rows %}
{{ row.label }}
{% if row.is_url and row.value != '—' %}{{ row.value }}{% else %}{{ row.value }}{% endif %}
{% if row.value != '—' %} {% include 'core/_copy_value_button.html' with copy_value=row.value copy_label=row.label %} {% endif %}
{% empty %}

No details are available for this record.

{% endfor %}
{% if can_archive or can_delete %}
{% if can_archive %}
{% csrf_token %}
{% endif %} {% if can_delete %}
{% csrf_token %}
{% endif %}
{% endif %} {% endblock %}