{% extends "base.html" %} {% load scoped_tags %} {% block title %}Feature Flags{% endblock %} {% block page_title %}Feature Flags{% endblock %} {% block page_subtitle %}Gradual rollouts and feature gating (Layer 5 + A3){% endblock %} {% block layer_indicator %}L5 Rules · A3 Feature Flags{% endblock %} {% block content %}
{{ flags|length }} feature flag{{ flags|length|pluralize }} configured
{% if flags %}
{% for flag in flags %}

{{ flag.feature_name }}

{% if flag.enabled %} Enabled {% else %} Disabled {% endif %}
{% if flag.name != flag.feature_name %}

Rule: {{ flag.name }}

{% endif %} {# Rollout percentage bar #}
Rollout {{ flag.rollout_percentage }}%
{{ flag.binding_count }} binding{{ flag.binding_count|pluralize }} Priority {{ flag.priority }}
{% endfor %}
{% else %} {% include "components/_empty_state.html" with title="No feature flags" message="Feature flags are rules with type FEATURE_FLAG. Create flag rules to control feature rollouts." %} {% endif %} {% endblock %}