{% extends "base.html" %} {% block title %}{% if current_secret %}Update{% else %}Add{% endif %} secret: {{ secret_name }}{% endblock %} {% block crumbs %}

home / secrets

{% endblock %} {% block content %}

{% if current_secret %}Update{% else %}Add{% endif %} secret: {{ secret_name }}

{% if secret_details.description or secret_details.obtain_label %}

{{ secret_details.description or "" }}{% if secret_details.description and secret_details.obtain_label %}. {% endif %} {% if secret_details.obtain_label %}{{ secret_details.obtain_label }}{% endif %}

{% endif %} {% if error %}

{{ error }}

{% endif %}

{% endblock %}