From daac0fdd6043a7f189c0e508be324f1823bf0e71 2019-01-07 22:05:08 From: Brett Smith Date: 2019-01-07 22:05:08 Subject: [PATCH] templates: Render payment buttons at the bottom of invoices. In addition to the top, to better follow modern convention. --- diff --git a/pinaxcon/templates/registrasion/invoice.html b/pinaxcon/templates/registrasion/invoice.html index 86d4c189b304ec9b45553cd2ee068c73d0bb6866..5d4a585313d505df4f55dd0679487f8f1576e97b 100644 --- a/pinaxcon/templates/registrasion/invoice.html +++ b/pinaxcon/templates/registrasion/invoice.html @@ -1,5 +1,11 @@ {% extends "registrasion/invoice_.html" %} -{% block payment_actions %} +{% block content %} {{ block.super }} + +
+ {% block payment_actions_outer %} + {{ block.super }} + {% endblock %} +
{% endblock %}