fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Cutting stuff out.
[wolnelektury.git]
/
src
/
newsletter
/
templates
/
newsletter
/
2022
/
subscribe_form.html
1
{% extends "2022/base_simple.html" %}
2
{% load i18n %}
3
{% load honeypot %}
4
5
{% block settings %}
6
{% load title %}
7
{% title form.newsletter.page_title %}
8
{% endblock %}
9
10
11
{% block content %}
12
<h1>{{ title }}</h1>
13
14
<form method="post">
15
{% csrf_token %}
16
{% render_honeypot_field %}
17
{{ form }}
18
19
<div class="helptext">
20
{{ form.data_processing }}
21
</div>
22
23
<button>Dalej</button>
24
</form>
25
{% endblock %}