haikal/templates/plans/fake_payments.html
2025-07-15 17:27:03 +03:00

14 lines
385 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block body %}
<h1>FakePayments™</h1>
<p>
Please select desired status after performing payment for an <strong>{{ object }}</strong>.
</p>
<form method="POST">
{% csrf_token %}
{{ form.as_p }}
<button type="submit" class="btn btn-phoenix-primary">Pay now</button>
</form>
{% endblock %}