{% extends "layout.html" %} {% block content %}
{{ users|length }}
Total Users
{{ teams|length }}
Teams
{{ projects|length }}
Projects
{{ recent_time_entries }}
Recent Entries
Last 7 days

Company Information

Company Name {{ company.name }}
Slug {{ company.slug }}
Type {% if company.is_personal %} Personal/Freelancer {% else %} Business Company {% endif %}
Status {% if company.is_active %} Active {% else %} Inactive {% endif %}
Created {{ company.created_at.strftime('%Y-%m-%d %H:%M') }}
Max Users {{ company.max_users or 'Unlimited' }}
{% if company.description %}
Description {{ company.description }}
{% endif %}
{% if role_counts %}

Role Distribution

{% for role, count in role_counts.items() %}
{{ count }}
{{ role }}
{% endfor %}
{% endif %}

Users {{ users|length }}

{% if users %}
{% for user in users[:10] %}
{{ user.username }}
{{ user.email or 'No email' }}
{{ user.role.value if user.role else 'Team Member' }} {% if user.is_blocked %} Blocked {% elif not user.is_verified %} Unverified {% endif %}
{% endfor %} {% if users|length > 10 %} {% endif %}
{% else %}

No users in this company.

{% endif %}

Teams {{ teams|length }}

{% if teams %}
{% for team in teams %}
{{ team.name }}
{% if team.description %}
{{ team.description }}
{% endif %}
{{ team.created_at.strftime('%Y-%m-%d') }}
{% endfor %}
{% else %}

No teams in this company.

{% endif %}

Projects {{ projects|length }}

{% if projects %}
{% for project in projects[:10] %}
{{ project.name }}
{{ project.code }} {% if project.description %} • {{ project.description[:50] }}{% if project.description|length > 50 %}...{% endif %} {% endif %}
{% if project.is_active %} Active {% else %} Inactive {% endif %}
{% endfor %} {% if projects|length > 10 %} {% endif %}
{% else %}

No projects in this company.

{% endif %}

Danger Zone

Delete Company

Once you delete a company, there is no going back. This will permanently delete:

  • All users in the company
  • All projects, tasks, and time entries
  • All teams and settings
{% endblock %}