{% extends "layout.html" %} {% block content %}
{{ companies.total }}
Total Companies
{{ companies.items | selectattr('is_personal') | list | length }}
Personal Companies
{{ companies.items | rejectattr('is_personal') | list | length }}
Business Companies
{{ companies.items | selectattr('is_active') | list | length }}
Active Companies
{% if companies.items %}
{% for company in companies.items %} {% endfor %}
Company 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') }}
{% if companies.pages > 1 %}
Showing {{ companies.per_page * (companies.page - 1) + 1 }} - {{ companies.per_page * (companies.page - 1) + companies.items|length }} of {{ companies.total }} companies
{% endif %} {% else %}

No Companies Yet

No companies exist in the system.

Create First Company
{% endif %}
{% endblock %}