{% extends 'companies/superadmin/base.html' %} {% load humanize %} {% block content %}

Companies

New Company
{% for company in companies %}
{{ company.name }}

/{{ company.slug }}/

{% if company.is_active %} Active {% else %} Suspended {% endif %}
Plan {{ company.plan.name|default:"None" }}
Created {{ company.created_at|date:"M d, Y" }}
Manage Workspace
{% empty %}

No companies found

You haven't added any client companies yet.

Create Your First
{% endfor %}
{% endblock %}