14 lines
385 B
HTML
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 %}
|