{% extends '_base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load secret_helpers %} {% load static %} {% block header %}
{% if perms.secrets.change_secret %} {% edit_button secret %} {% endif %} {% if perms.secrets.delete_secret %} {% delete_button secret %} {% endif %}

{% block title %}{{ secret }}{% endblock %}

{% include 'inc/created_updated.html' with obj=secret %}
{% custom_links secret %}
{% endblock %} {% block content %}
Secret Attributes
Device {{ secret.device }}
Role {{ secret.role }}
Name {{ secret.name|placeholder }}
{% include 'inc/custom_fields_panel.html' with obj=secret %}
{% if secret|decryptable_by:request.user %}
Secret Data
{% csrf_token %}
Secret
********
{% else %}
You do not have permission to decrypt this secret.
{% endif %} {% include 'extras/inc/tags_panel.html' with tags=secret.tags.all url='secrets:secret_list' %}
{% include 'secrets/inc/private_key_modal.html' %} {% endblock %} {% block javascript %} {% endblock %}