]> git.0d.be Git - django-panik-newsletter.git/blob - templates/subscription_form.html
modification de la gestion de la souscritpion
[django-panik-newsletter.git] / templates / subscription_form.html
1
2 {% block newsletter_form %}
3     {% if is_sent %}
4         <p>
5             Vous devriez recevoir sous peu un mail de confirmation dans votre boĆ®te mail.
6         </p>
7     {% endif %}
8     {% if custom_errors %}
9         <p>
10         {% for error in custom_errors %}
11             {{ error }} </br>
12         {% endfor %}
13         </p>
14     {% endif %}
15
16     <form action="" method="post" >
17         <table> 
18             {{ form.as_table }}
19         </ table>
20         {% csrf_token %}
21         <input type="submit" value="Soumettre">
22     </form> 
23 {% endblock %}