{% extends "layout.html" %} {% block content %}
Manage companies across the entire system
| Company Name | Type | Users | Admins | Status | Created | Actions |
|---|---|---|---|---|---|---|
|
{{ company.name }}
{% if company.slug %}
{{ company.slug }} {% endif %} |
{% if company.is_personal %} Freelancer {% else %} Company {% endif %} | {{ company_stats[company.id]['user_count'] }} users | {{ company_stats[company.id]['admin_count'] }} admins | {% if company.is_active %} Active {% else %} Inactive {% endif %} | {{ company.created_at.strftime('%Y-%m-%d') }} |
Showing {{ companies.per_page * (companies.page - 1) + 1 }} - {{ companies.per_page * (companies.page - 1) + companies.items|length }} of {{ companies.total }} companies
No companies exist in the system yet.
{{ companies.total }}
{{ companies.items | selectattr('is_personal') | list | length }}
{{ companies.items | rejectattr('is_personal') | list | length }}
{{ companies.items | selectattr('is_active') | list | length }}