Jun 28 - Update cli.py

This commit is contained in:
2026-06-28 18:09:35 -04:00
parent 8442d12c96
commit 6c10b93c9d
+3 -1
View File
@@ -31,11 +31,13 @@ def _cmd_list_plans(_args):
print('No plans found. Run: python -m control.cli seed')
return
for p in plans:
price = p.stripe_price_id or '(not set)'
print(f' [{p.code}] {p.name} '
f'users={p.max_users} facilities={p.max_facilities} '
f'insp/mo={p.max_inspections_month} issues/mo={p.max_issues_month} '
f'custom_domain={p.allow_custom_domain} mobile={p.allow_mobile_api} '
f'sched_reports={p.allow_scheduled_reports} branding={p.allow_branding}')
f'sched_reports={p.allow_scheduled_reports} branding={p.allow_branding} '
f'stripe_price_id={price}')
def _cmd_create_superadmin(args):