forked from openedx/edx-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doc.rst.j2
29 lines (24 loc) · 802 Bytes
/
doc.rst.j2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
###############
Feature Toggles
###############
These are all of our well-documented feature toggles!
{% for group in groups %}
{{ group.toggle_name }}
{{ '*'*(group.toggle_name|length) }}
{{ group.toggle_description }}
* Type: {{ group.toggle_type[0] }}
* Status: {{ group.toggle_status }}
* Use cases: {{ group.toggle_use_cases|join(", ") }}
{% if group.toggle_warnings != 'None' -%}
* Warnings: {{ group.toggle_warnings }}
{% endif -%}
{% if group.toggle_expiration_date != 'None' -%}
* Expiration date: {{ group.toggle_expiration_date }}
{% endif -%}
* Category: {{ group.toggle_category }}
{% if group.toggle_tickets != 'None' -%}
* Tickets: {{ group.toggle_tickets }}
{% endif -%}
* Default: {{ group.toggle_default }}
* Defined at: {{ group.filename }}:{{ group.line_number }}
{% endfor %}