Skip to content
Snippets Groups Projects

Implement payment backends and interaction

Merged Nik | Klampfradler requested to merge payment-backends into master
4 files
+ 36
10
Compare changes
  • Side-by-side
  • Inline
Files
4
{% extends 'core/base.html' %}
{% load i18n %}
{% load material_form %}
{% block page_title %}{% blocktrans %}Make payment for{% endblocktrans %} {{ payment.transaction_id }}{% endblock %}
{% block browser_title %}{% blocktrans %}Make payment for{% endblocktrans %} {{ payment.transaction_id }}{% endblock %}
{% block content %}
<form action="{{ form.action }}" method="{{ form.method }}">
{% csrf_token %}
{% form form=form %}{% endform %}
{% trans "Confirm payment" as caption %}
{% include "core/partials/save_button.html" with caption=caption icon="shopping_cart_checkout" %}
</form>
{% endblock %}
Loading