{% extends "base.html" %} {% block title %}Env: {{ config.id }}{% endblock %} {% block content %}

{{ config.key }}

ID: {{ config.id }}
Environment: {{ config.environment }}
Category: {{ config.category }}
Key: {{ config.key }}
Value: {% if config.sensitive %}●●●●●●●●{% else %}{{ config.value }}{% endif %}
Sensitive: {% if config.sensitive %}Yes{% else %}No{% endif %}
Version: {{ config.version }}
Last changed: {{ config.changed_at }} by {{ config.changed_by }}
{% if config.notes %}
Notes: {{ config.notes }}
{% endif %}

Version History ({{ history|length }} versions)

{% for h in history %} {% endfor %}
v Value Changed at By Reason
{{ h.version }} {% if h.sensitive %}●●●●●●{% else %}{{ h.value }}{% endif %} {{ h.changed_at }} {{ h.changed_by }} {{ h.change_reason }}
{% endblock %}