{% extends "nexus/module.html" %} {% load gargoyle_helpers %} {% load url from future %} {% block head %} {{ block.super }} {% endblock %} {% block content %}
You do not have any switches yet. Add the first one.
{% for switch in switches %} {% endfor %}

{% if switch.label %}{{ switch.label }}{% else %}{{ switch.key|title }}{% endif %} ({{ switch.key }})

{% if sorted_by|sort_field == 'date_created' %} Created {{ switch.date_created|timesince }} ago {% else %} Last modified {{ switch.date_modified|timesince }} ago {% endif %}
{% if switch.description %}

{{ switch.description }}

{% endif %}
{% for group in switch.conditions %}
{% for field, value, display, is_exclude in group.conditions %} {% if is_exclude %}not {% endif %}{{ display }} {% endfor %}
{% endfor %}

Add a condition

({{ switch.statusLabel }})

{% raw %} {% endraw %} {% endblock %}