{% extends "base.html" %} {% block title %}Edit {{ secret.key }} - PyRunner{% endblock %} {% block content %}
{% include "cpanel/_sidebar.html" %}

Edit Secret

Update the value or description (key cannot be changed)

{% csrf_token %}
{{ secret.key }}

Key cannot be changed after creation

{{ secret.get_masked_value }}
{{ form.value }} {% if form.value.help_text %}

{{ form.value.help_text }}

{% endif %} {% if form.value.errors %}

{{ form.value.errors.0 }}

{% endif %}
{{ form.description }} {% if form.description.errors %}

{{ form.description.errors.0 }}

{% endif %}
Cancel
{% endblock %}