{% extends "base.html" %} {% block title %}Clients{% endblock %} {% block content %}

Clients

{% if clients %} {% for c in clients %} {% endfor %}
NameOrgURLStatusCreated
{{ c.name }} {{ c.org_name }} {{ c.primary_url }} {{ c.status }} {{ c.created_at }}
{% else %}

No clients yet. Pick an organization and add a client to it.

{% endif %} {% endblock %}