{% extends "reggi/base.html" %} {% load humanize %} {% block title %}Simulated Checkout{% endblock %} {% block content %}
Simulated checkout STUB BACKEND
{% if pack %}

This is a local stub — no payment is processed and no real money moves. Confirming will issue {{ pack.name }} ({{ pack.credits|intcomma }} requests for ${{ pack.price }}) exactly as a real purchase would.

{% csrf_token %} Cancel
{% else %}

No active credit pack found.

Back to pricing {% endif %}
{% endblock %}