433b6fcb9b0b0d8dd4ec7f52354ad0f09dbf3bd4
[wolnelektury.git] / src / club / templates / club / membership_form_app.html
1 {% extends "base/app.html" %}
2 {% load i18n %}
3
4
5 {% block titleextra %}{% trans "Wolne Lektury need your help!" %}{% endblock %}
6
7
8 {% block body %}
9   <div class="white-box normal-text">
10
11     <h1>{% if membership %}Odnów swoje wsparcie dla Wolnych Lektur{% else %}Wspieraj Wolne Lektury{% endif %}</h1>
12
13     <form method="POST" action="">
14       {% csrf_token %}
15
16       {{ form.as_p }}
17   <button type='submit'>Wspieraj</button>
18 </form>
19
20 </div>
21
22 {% endblock %}