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

Dashboard

Organizations

+ New organization
{% if orgs %} {% for o in orgs %} {% endfor %}
NameKindClients
{{ o.name }} {{ o.kind }} {{ o.n_clients }} + Client
{% else %}

No organizations yet. Create your first one — e.g. PlusROI as a master account, or a single-client org for one-off engagements.

{% endif %}

Recent clients

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

No clients yet. Create an organization first, then add clients to it.

{% endif %}
{% endblock %}