This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
lingo-obsolete/lingo/templates/lingo/payment_form.html

17 lines
442 B
HTML

{% load i18n %}
<html>
<head>
</head>
<body onload="document.forms[0].submit()">
<p>
{% trans "Please wait while your browser is being redirected to the payment website..." %}
</p>
<form action="{{ form.url }}" method="{{ form.method }}" style="display: none">
{% for field in form.fields %}
<input type="{{ field.type }}" name="{{ field.name }}" value="{{ field.value }}"/>
{% endfor %}
<input type="submit">
</form>
</body>
</html>