{% extends 'template.html' %} {% block title %}Clients{% endblock %} {% block page_content %}
Clients
{% for client in clients %} {% endfor %}
Id Name Phone  
{{ client.id }} {{ client.name }} {{ client.phone }} {% if {module: 'clients', action: 'show'} in privileges %} Show {% endif %} {% if {module: 'clients', action: 'edit'} in privileges %} Edit {% endif %} {% if {module: 'clients', action: 'delete'} in privileges %} Delete {% endif %}
{% endblock %} {% block page_includes %} {% endblock %}