{% extends "admin/layouts/base.html" %} {% block title %}{{ tenant.name }}{% endblock %} {% block content %}

{{ tenant.name }} {{ tenant.slug }} {% if tenant.is_demo %}Demo{% endif %}

{{ tenant.status }}
Edit Add Billing Entry Set Override
{{ tenant.plan.name if tenant.plan else '—' }}
Plan
{{ locations|length }}
Locations
{{ users|length }}
Portal Users
{{ overrides|length }}
Active Overrides
Change Status
{% if overrides %}
Active Setting Overrides
{% for ov in overrides %} {% endfor %}
KeyValueSet byNote
{{ ov.setting_key }} {{ ov.setting_value }} {{ ov.admin.name if ov.admin else ov.overridden_by }} {{ ov.note or '—' }}
{% endif %} {% if billing %}
Recent Billing
{% for b in billing %} {% endfor %}
DateAmountDescriptionInvoice RefPaid
{{ b.created_at.strftime('%Y-%m-%d') }} ${{ "%.2f"|format(b.amount) }} {{ b.description }} {{ b.invoice_ref or '—' }} {{ b.paid_at.strftime('%Y-%m-%d') if b.paid_at else '—' }}
{% endif %} Back to Tenants {% endblock %}