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

{{ company.name }}

{% if company.is_active %} Suspend Company {% else %} Activate Company {% endif %}
Today's Sales

{{ cs.currency_symbol|default:"₦" }}{{ today_sales|floatformat:2|intcomma }}

Today's Orders

{{ today_orders|intcomma }}

Total Revenue

{{ cs.currency_symbol|default:"₦" }}{{ total_revenue|floatformat:2|intcomma }}

Total Orders

{{ total_orders_count|intcomma }}

General Information
Company Slug /{{ company.slug }}/
Email Address {{ company.email|default:"—" }}
Phone Number {{ company.phone|default:"—" }}
Default Currency {{ cs.currency_symbol }} ({{ cs.get_currency_display }})
Registered On {{ company.created_at|date:"d M Y, H:i" }}
Status {% if company.is_active %} {% if company.is_expired %} Expired {% else %} Active {% endif %} {% else %} Suspended {% endif %}
Access Control

You can enter this company's workspace directly as a super-administrator to inspect data or help the tenant.

Open Workspace {% if company.is_active %} Suspend Access {% else %} Restore Access {% endif %}
Plan Management
Current Plan
{{ company.plan.name|default:"Custom / No Plan" }}
{% if company.plan %}
₦{{ company.plan.price_monthly|floatformat:2 }}/month
{% endif %}
Expiration
{% if company.expiry_date %} {{ company.expiry_date|date:"d M Y" }} {% if company.is_expired %}(Expired){% endif %} {% else %} Lifetime / Never Expires {% endif %}

Update Subscription
{% csrf_token %}
Leave blank for lifetime access.
{% endblock %}