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