fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
b2e6a0c7d476126e94bf7020b60df1a334f6a7f6
[wolnelektury.git]
/
src
/
paypal
/
templates
/
paypal
/
form.html
1
{% extends "base/base.html" %}
2
{% load i18n %}
3
4
{% block title %}{% trans "Subscription" %}{% endblock %}
5
6
{% block body %}
7
<form method="post">
8
{% csrf_token %}
9
{{ form.as_p }}
10
{# paypal submit button #}
11
<button type="submit">{% trans "Subscribe with PayPal" %}</button>
12
</form>
13
{% endblock %}