{% extends 'template.html' %} {% block title %}Content Conditions{% endblock %} {% block button_toolbar %}
{% if {module: 'content_conditions', action: 'add'} in privileges %} Add Condition {% endif %}
{% endblock %} {% block page_content %}
Content Conditions
{% for contentCondition in contentConditions %} {% endfor %}
Id Name Value Status  
{{ contentCondition.id }} {{ contentCondition.name }} {{ contentCondition.value }} {% if contentCondition.status == 1 %}active {% else %} inactive {% endif %} {% if {module: 'content_conditions', action: 'edit'} in privileges %} Edit {% endif %} {% if {module: 'content_conditions', action: 'delete'} in privileges %} Delete {% endif %}
{% endblock %} {% block page_includes %} {% endblock %}