{% extends "layouts/app.html" %} {% block title %}{{ page_title }} - Facilities Management{% endblock %} {% block sidebar %} {% include 'components/sidebar.html' %} {% endblock %} {% block topbar %}

{{ page_title }}

{{ clients|length }} client{{ 's' if clients|length != 1 else '' }}

+ Add Client
{% endblock %} {% block content %}
{% if clients %} {% for client in clients %} {% endfor %}
Name Organisation Email Phone Address Created
{{ client.name }} {{ client.organisation or '-' }} {{ client.email or '-' }} {{ client.phone or '-' }} {{ client.address or '-' }} {{ client.created_at[:10] }}
{% else %}

No Clients Yet

Add your first client to get started

+ Add Client
{% endif %}
{% endblock %}