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

Subscription Plans

New Plan
{% for plan in plans %}
{{ plan.name }} {{ 'Active' if plan.is_active else 'Inactive' }}

${{ "%.2f"|format(plan.price_monthly) }}/mo

Staff: {{ plan.max_staff or 'Unlimited' }} • Locations: {{ plan.max_locations or 'Unlimited' }}

{% for flag, enabled in (plan.features_json or {}).items() %} {{ flag }} {% endfor %}
{% endfor %}
{% endblock %}