{% extends "admin/change_list.html" %} {% load i18n %} {% block content %}
{% if enable_flag_edit %}
Mode: OVERRIDES ENABLED. The values below show whether a feature is pulling from the ENV or a Database Override. You may add or edit database overrides below.
{% else %}
Mode: READ-ONLY. (ENABLE_FEATURE_FLAG_OVERRIDE is False). Displaying a read-only list of Environment Variables based on configured prefixes.
{% endif %}
{% for flag_name, flag_data in resolved_flags.items %} {% empty %} {% endfor %}
Feature Flag Name Current Status Value Source
{{ flag_name }} {% if flag_data.value %} True True {% else %} False False {% endif %} {% if flag_data.source == "ENV" %} {{ flag_data.source }} {% else %} {{ flag_data.source }} {% endif %}
No feature flags found matching the configured prefixes.

{% if enable_flag_edit %}

Manage Database Overrides

{{ block.super }} {% endif %}
{% endblock %}