{% extends "base.html" %} {% block title %}Billing{% endblock %} {% block content %}
This workspace ({{ owner.email }}) is on the {{ plan.name }} plan{% if trial.active %} (trial, {{ trial.days_left }} days left){% endif %}. Only the workspace owner can change the plan or payment details.
You're on {{ plan.name }}{% if trial.active %} (trial · {{ trial.days_left }} day{{ 's' if trial.days_left != 1 }} left){% endif %}: {{ plan.monitors }} monitors, {{ plan.servers }} server{{ 's' if plan.servers != 1 }}, checks every {{ plan.min_interval }}+ min, {{ plan.retention_days }} days of history.
{% if plan.addons %}Add-ons: {% for k, q in plan.addons.items() %}{{ addons[k].name }}{% if q > 1 %} ×{{ q }}{% endif %}{{ ', ' if not loop.last }}{% endfor %} (+${{ plan.addons_price }}/mo).
{% endif %} {% if request.query_params.get('success') %}Need a little more than your plan? Add packs on top of {{ base_plan.name if _pk in addon_plans else 'Pro or Enterprise' }}; they're billed with your subscription, prorated from today, and you can remove them any time.{% if _pk in addon_plans and current_addons %} Current add-ons: ${{ addons_total }}/month on top of ${{ base_plan.price }}.{% endif %}
{% if _pk in addon_plans %} {% else %}{% if user.plan == 'custom' %}On a custom plan you pick modules below instead.{% else %}Start with Pro or Enterprise above, then add packs here.{% endif %}
{% endif %}Share your link. Anyone who signs up through it gets a 20-day Pro trial instead of 10, and when they subscribe your next invoice is on us. No limit.
Card payments are being enabled. Trials work today; to buy a plan now, email hello@puzaricloud.in and we'll activate it the same day.
{% else %}Prices in USD, billed monthly; Paddle.com is our merchant of record and adds local tax at checkout where required. Cancel anytime.
{% endif %} {% endif %} {% endblock %}