{% extends 'generic/object.html' %} {% load i18n %} {% load helpers %} {% load plugins %} {% block content %}

{% trans "Secret Type" %}

{% trans "Name" %}{{ object.name }}
{% trans "Slug" %}{{ object.slug }}
{% trans "Description" %}{{ object.description|placeholder }}
{% trans "Secrets" %} {{ object.secrets.count }}

{% trans "Storage" %}

{% trans "Name template" %} {{ object.name_template|placeholder }}
{% trans "KMS key" %} {{ object.kms_key_id|placeholder }}
{% include 'inc/panels/tags.html' %} {% plugin_left_page object %}

{% trans "Fields" %}

{% for spec in field_specs %} {% endfor %}
{% trans "Name" %} {% trans "Type" %} {% trans "Widget" %} {% trans "Required" %} {% trans "Sensitive" %}
{{ spec.name }} {{ spec.type }} {{ spec.widget }} {% if spec.required %}{% else %}—{% endif %} {% if spec.sensitive %}{% else %}—{% endif %}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/comments.html' %} {% plugin_right_page object %}
{% endblock content %}