{% extends "base.html" %} {% block title %}{{ _('Admin · Plans') }}{% endblock %} {% block content %} {% include "admin/_nav.html" %}

{{ _('Plans') }}

{% for plan in plans %} {% endfor %}
{{ _('Slug') }} {{ _('Name') }} {{ _('Price / mo') }} {{ _('Stripe price ID') }} {{ _('Active') }}
{{ plan.slug }} {{ plan.name }} ${{ '%.2f'|format(plan.price_monthly_cents / 100) }} {{ plan.stripe_price_id or '—' }} {{ _('yes') if plan.is_active else _('no') }} {{ _('Edit') }}
{% endblock %}