{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load static %} {% load plugins %} {% block header %}
{% plugin_buttons object %} {% if perms.secrets.change_secret %} {% edit_button object %} {% endif %} {% if perms.secrets.delete_secret %} {% delete_button object %} {% endif %}

{% block title %}{{ object }}{% endblock %}

{% include 'inc/created_updated.html' %}
{% custom_links object %}
{% endblock %} {% block content %}
Secret Attributes
Assigned object {{ object.assigned_object }}
Role {{ object.role }}
Name {{ object.name|placeholder }}
{% include 'inc/custom_fields_panel.html' %} {% plugin_left_page object %}
Secret Data
{% csrf_token %}
Secret
********
{% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='secrets:secret_list' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% include 'secrets/inc/private_key_modal.html' %} {% endblock %} {% block javascript %} {% endblock %}