{% extends '__layout__.html' %} {% block title %}Admin{% endblock %} {% block head %} {% endblock %} {% block content %}
Back to FFlag GroupsDelete Group

{{group.name}}

{{group.description}}

Created: {{group.created_at}}

Last Updated: {{group.updated_at}}

Enabled: {{ group.enabled }}

{% with messages = get_flashed_messages() %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %}

Import from file

Note: This will remove all current flags and replace them with the file

Flags ({{flagcount}})

{% for fflag in FFlagsLookupResults %} {% endfor %}
Name Type Value
{{fflag.name}} {% if fflag.flag_type == 1: %}boolean{% endif %}{% if fflag.flag_type == 2: %}number{% endif %}{% if fflag.flag_type == 3: %}string{% endif %} {{ b64decode(fflag.flag_value).decode('utf-8') }}
Previous

Page {{FFlagsLookupResults.page}} of {{FFlagsLookupResults.pages}}

Next
{% endblock %}