Funding balance sheet changed.
[wolnelektury.git] / src / newsletter / templates / newsletter / subscribe_form.html
index 53d7901..e20be8a 100644 (file)
@@ -1,18 +1,25 @@
-{% extends "base/base.html" %}
+{% extends "base_simple.html" %}
 {% load i18n %}
 {% load honeypot %}
-{% load ajaxable_tags %}
 
-{% block body %}
-  <h1>{{ page_title }}</h1>
-  <form id="subscribe-form" action="" method="post" accept-charset="utf-8" class="cuteform">
+{% block settings %}
+  {% load title %}
+  {% title form.newsletter.page_title %}
+{% endblock %}
+
+
+{% block content %}
+  <h1>{{ title }}</h1>
+
+  <form method="post">
     {% csrf_token %}
     {% render_honeypot_field %}
-    <ol>
-      <li>{{ form.email|pretty_field }}</li>
-      <li>{{ form.mailing_lists|pretty_field }}</li>
-      <li><span class="helptext">{{ form.data_processing }}</span></li>
-      <li><input type="submit" value="{% trans "Subscribe" %}"/></li>
-    </ol>
+    {{ form }}
+
+    <div class="helptext">
+      {{ form.data_processing }}
+    </div>
+
+    <button>Dalej</button>
   </form>
 {% endblock %}