{% extends 'template.html' %} {% block title %}Content Units{% endblock %} {% block button_toolbar %}
{% if {module: 'content_units', action: 'add'} in privileges %} Add Unit {% endif %}
{% endblock %} {% block page_content %}
Content Units
{% for contentUnit in contentUnits %} {% endfor %}
Id Name Status  
{{ contentUnit.id }} {{ contentUnit.name }} {% if contentUnit.status == 1 %}active {% else %} inactive {% endif %} {% if {module: 'content_units', action: 'edit'} in privileges %} Edit {% endif %} {% if {module: 'content_units', action: 'delete'} in privileges %} Delete {% endif %}
{% endblock %} {% block page_includes %} {% endblock %}