Merge lp:~wacky/postorius/csrf into lp:postorius
- csrf
- Merge into trunk
Proposed by
Richard Wackerbarth
Status: | Merged | ||||
---|---|---|---|---|---|
Merged at revision: | 65 | ||||
Proposed branch: | lp:~wacky/postorius/csrf | ||||
Merge into: | lp:postorius | ||||
Diff against target: |
253 lines (+25/-25) 14 files modified
src/postorius/templates/postorius/confirm_dialog.html (+1/-1) src/postorius/templates/postorius/domain_new.html (+1/-1) src/postorius/templates/postorius/lists/mass_subscribe.html (+1/-1) src/postorius/templates/postorius/lists/new.html (+1/-1) src/postorius/templates/postorius/lists/settings.html (+1/-1) src/postorius/templates/postorius/lists/subscribe.html (+1/-1) src/postorius/templates/postorius/lists/subscriptions.html (+2/-2) src/postorius/templates/postorius/lists/summary.html (+1/-1) src/postorius/templates/postorius/login.html (+4/-4) src/postorius/templates/postorius/menu/general.html (+2/-2) src/postorius/templates/postorius/menu/maintanance.html (+3/-3) src/postorius/templates/postorius/menu/subscriptions.html (+4/-4) src/postorius/templates/postorius/user_mailmansettings.html (+1/-1) src/postorius/templates/postorius/user_settings.html (+2/-2) |
||||
To merge this branch: | bzr merge lp:~wacky/postorius/csrf | ||||
Related bugs: |
|
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Florian Fuchs | Approve | ||
Review via email: mp+106211@code.launchpad.net |
Commit message
Description of the change
csrf tokens added
To post a comment you must log in.
lp:~wacky/postorius/csrf
updated
- 66. By Richard Wackerbarth
-
Some spelling errors
Preview Diff
[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1 | === modified file 'src/postorius/templates/postorius/confirm_dialog.html' | |||
2 | --- src/postorius/templates/postorius/confirm_dialog.html 2012-03-23 17:24:59 +0000 | |||
3 | +++ src/postorius/templates/postorius/confirm_dialog.html 2012-05-17 15:51:26 +0000 | |||
4 | @@ -4,7 +4,7 @@ | |||
5 | 4 | {% block main %} | 4 | {% block main %} |
6 | 5 | <h1>{% trans 'Confirm' %}</h1> | 5 | <h1>{% trans 'Confirm' %}</h1> |
7 | 6 | <p>{% trans "Are you sure?" %}</p> | 6 | <p>{% trans "Are you sure?" %}</p> |
9 | 7 | <form action="{{submit_url}}" method="post"> | 7 | <form action="{{submit_url}}" method="post"> {% csrf_token %} |
10 | 8 | <button class="btn btn-danger" type="submit">{% trans "OK" %}</button> | 8 | <button class="btn btn-danger" type="submit">{% trans "OK" %}</button> |
11 | 9 | <a class="btn" href="{{cancel_url}}">{% trans "Cancel" %}</a> | 9 | <a class="btn" href="{{cancel_url}}">{% trans "Cancel" %}</a> |
12 | 10 | </form> | 10 | </form> |
13 | 11 | 11 | ||
14 | === modified file 'src/postorius/templates/postorius/domain_new.html' | |||
15 | --- src/postorius/templates/postorius/domain_new.html 2012-03-23 18:02:50 +0000 | |||
16 | +++ src/postorius/templates/postorius/domain_new.html 2012-05-17 15:51:26 +0000 | |||
17 | @@ -4,7 +4,7 @@ | |||
18 | 4 | {% block main %} | 4 | {% block main %} |
19 | 5 | {% include 'postorius/menu/settings_nav.html' %} | 5 | {% include 'postorius/menu/settings_nav.html' %} |
20 | 6 | <h1>{% trans "Add a new Domain" %}</h1> | 6 | <h1>{% trans "Add a new Domain" %}</h1> |
22 | 7 | <form action="{% url domain_new %}" method="post" class="well"> | 7 | <form action="{% url domain_new %}" method="post" class="well"> {% csrf_token %} |
23 | 8 | {{ form.as_p }} | 8 | {{ form.as_p }} |
24 | 9 | <div class="field"> | 9 | <div class="field"> |
25 | 10 | <button class="btn btn-success" type="submit">{% trans "Create Domain" %}</button> | 10 | <button class="btn btn-success" type="submit">{% trans "Create Domain" %}</button> |
26 | 11 | 11 | ||
27 | === modified file 'src/postorius/templates/postorius/lists/mass_subscribe.html' | |||
28 | --- src/postorius/templates/postorius/lists/mass_subscribe.html 2012-03-23 22:06:25 +0000 | |||
29 | +++ src/postorius/templates/postorius/lists/mass_subscribe.html 2012-05-17 15:51:26 +0000 | |||
30 | @@ -6,7 +6,7 @@ | |||
31 | 6 | {% include 'postorius/menu/list_nav.html' %} | 6 | {% include 'postorius/menu/list_nav.html' %} |
32 | 7 | {% endif %} | 7 | {% endif %} |
33 | 8 | <h1>{% trans "Mass Subscribe" %} <span>- {{list.fqdn_listname}}</span></h1> | 8 | <h1>{% trans "Mass Subscribe" %} <span>- {{list.fqdn_listname}}</span></h1> |
35 | 9 | <form action="{% url mass_subscribe list.fqdn_listname %}" method="post" class="well"> | 9 | <form action="{% url mass_subscribe list.fqdn_listname %}" method="post" class="well"> {% csrf_token %} |
36 | 10 | {{ form.as_p }} | 10 | {{ form.as_p }} |
37 | 11 | <button class="btn btn-primary" type="submit">{% trans "Subscribe users" %}</button> | 11 | <button class="btn btn-primary" type="submit">{% trans "Subscribe users" %}</button> |
38 | 12 | </form> | 12 | </form> |
39 | 13 | 13 | ||
40 | === modified file 'src/postorius/templates/postorius/lists/new.html' | |||
41 | --- src/postorius/templates/postorius/lists/new.html 2012-03-23 18:02:50 +0000 | |||
42 | +++ src/postorius/templates/postorius/lists/new.html 2012-05-17 15:51:26 +0000 | |||
43 | @@ -3,7 +3,7 @@ | |||
44 | 3 | 3 | ||
45 | 4 | {% block main %} | 4 | {% block main %} |
46 | 5 | <h1>{% trans "Create a new List" %} {{ block.super }}</h1> | 5 | <h1>{% trans "Create a new List" %} {{ block.super }}</h1> |
48 | 6 | <form action="{% url list_new %}" method="post" class="well"> | 6 | <form action="{% url list_new %}" method="post" class="well"> {% csrf_token %} |
49 | 7 | {{ form.as_p }} | 7 | {{ form.as_p }} |
50 | 8 | <button class="btn btn-success" type="submit">{% trans "Create List" %}</button> | 8 | <button class="btn btn-success" type="submit">{% trans "Create List" %}</button> |
51 | 9 | </form> | 9 | </form> |
52 | 10 | 10 | ||
53 | === modified file 'src/postorius/templates/postorius/lists/settings.html' | |||
54 | --- src/postorius/templates/postorius/lists/settings.html 2012-03-23 17:24:59 +0000 | |||
55 | +++ src/postorius/templates/postorius/lists/settings.html 2012-05-17 15:51:26 +0000 | |||
56 | @@ -12,7 +12,7 @@ | |||
57 | 12 | </ul> | 12 | </ul> |
58 | 13 | 13 | ||
59 | 14 | {% if visible_section %} | 14 | {% if visible_section %} |
61 | 15 | <form class="well" action="{% url list_settings fqdn_listname=list.fqdn_listname visible_section=visible_section visible_option=visible_option %}" method="post" class="list_settings"> | 15 | <form class="well" action="{% url list_settings fqdn_listname=list.fqdn_listname visible_section=visible_section visible_option=visible_option %}" method="post" class="list_settings"> {% csrf_token %} |
62 | 16 | {{ form.as_p }} | 16 | {{ form.as_p }} |
63 | 17 | <button class="btn btn-primary" type="submit">{%trans "Save changes" %}</button> | 17 | <button class="btn btn-primary" type="submit">{%trans "Save changes" %}</button> |
64 | 18 | </form> | 18 | </form> |
65 | 19 | 19 | ||
66 | === modified file 'src/postorius/templates/postorius/lists/subscribe.html' | |||
67 | --- src/postorius/templates/postorius/lists/subscribe.html 2012-03-20 08:16:24 +0000 | |||
68 | +++ src/postorius/templates/postorius/lists/subscribe.html 2012-05-17 15:51:26 +0000 | |||
69 | @@ -3,7 +3,7 @@ | |||
70 | 3 | 3 | ||
71 | 4 | {% block main %} | 4 | {% block main %} |
72 | 5 | <h1>{% trans 'Subscribe' %} <span>{{ list.fqdn_listname}}</span></h1> | 5 | <h1>{% trans 'Subscribe' %} <span>{{ list.fqdn_listname}}</span></h1> |
74 | 6 | <form action="{% url list_subscribe list.fqdn_listname %}" method="post" class="list_subscribe"> | 6 | <form action="{% url list_subscribe list.fqdn_listname %}" method="post" class="list_subscribe"> {% csrf_token %} |
75 | 7 | {{form.as_p}} | 7 | {{form.as_p}} |
76 | 8 | <input class="btn btn-primary" type="submit" value="{% trans 'Subscribe' %}" /> | 8 | <input class="btn btn-primary" type="submit" value="{% trans 'Subscribe' %}" /> |
77 | 9 | </form> | 9 | </form> |
78 | 10 | 10 | ||
79 | === modified file 'src/postorius/templates/postorius/lists/subscriptions.html' | |||
80 | --- src/postorius/templates/postorius/lists/subscriptions.html 2012-03-23 17:24:59 +0000 | |||
81 | +++ src/postorius/templates/postorius/lists/subscriptions.html 2012-05-17 15:51:26 +0000 | |||
82 | @@ -4,7 +4,7 @@ | |||
83 | 4 | {% block main %} | 4 | {% block main %} |
84 | 5 | {{list.list_name}} <span>{{list.display_name}}</span> | 5 | {{list.list_name}} <span>{{list.display_name}}</span> |
85 | 6 | {% if form_subscribe %} | 6 | {% if form_subscribe %} |
87 | 7 | <form action="{%url list_subscriptions list.fqdn_listname %}" method="post" class="subscribe mm_clear" name="subscribe"> | 7 | <form action="{%url list_subscriptions list.fqdn_listname %}" method="post" class="subscribe mm_clear" name="subscribe"> {% csrf_token %} |
88 | 8 | {{ form_subscribe.as_div }} | 8 | {{ form_subscribe.as_div }} |
89 | 9 | <div class="field"> | 9 | <div class="field"> |
90 | 10 | <button type="submit">{% trans "Subscribe" %}</button> | 10 | <button type="submit">{% trans "Subscribe" %}</button> |
91 | @@ -13,7 +13,7 @@ | |||
92 | 13 | </form> | 13 | </form> |
93 | 14 | {% endif %} | 14 | {% endif %} |
94 | 15 | {% if form_unsubscribe %} | 15 | {% if form_unsubscribe %} |
96 | 16 | <form action="{% url list_subscriptions list.fqdn_listname %}" method="post" class="unsubscribe mm_clear" name="unsubscribe"> | 16 | <form action="{% url list_subscriptions list.fqdn_listname %}" method="post" class="unsubscribe mm_clear" name="unsubscribe"> {% csrf_token %} |
97 | 17 | {{ form_unsubscribe.as_div }} | 17 | {{ form_unsubscribe.as_div }} |
98 | 18 | <div class="field"> | 18 | <div class="field"> |
99 | 19 | <button type="submit">{% trans "Unsubscribe" %}</button> | 19 | <button type="submit">{% trans "Unsubscribe" %}</button> |
100 | 20 | 20 | ||
101 | === modified file 'src/postorius/templates/postorius/lists/summary.html' | |||
102 | --- src/postorius/templates/postorius/lists/summary.html 2012-03-23 18:02:50 +0000 | |||
103 | +++ src/postorius/templates/postorius/lists/summary.html 2012-05-17 15:51:26 +0000 | |||
104 | @@ -15,7 +15,7 @@ | |||
105 | 15 | 15 | ||
106 | 16 | <h2>{% trans 'Membership' %}</h2> | 16 | <h2>{% trans 'Membership' %}</h2> |
107 | 17 | {% if user.is_authenticated %} | 17 | {% if user.is_authenticated %} |
109 | 18 | <form action="{% url list_subscribe list.fqdn_listname %}" method="post" class="list_subscribe"> | 18 | <form action="{% url list_subscribe list.fqdn_listname %}" method="post" class="list_subscribe"> {% csrf_token %} |
110 | 19 | {{subscribe_form.as_p}} | 19 | {{subscribe_form.as_p}} |
111 | 20 | <input class="btn btn-success" type="submit" value="{% trans 'Subscribe' %}" /> | 20 | <input class="btn btn-success" type="submit" value="{% trans 'Subscribe' %}" /> |
112 | 21 | <a href="{% url list_unsubscribe list.fqdn_listname user.email %}" class="btn btn-danger">Unsubscribe</a> | 21 | <a href="{% url list_unsubscribe list.fqdn_listname user.email %}" class="btn btn-danger">Unsubscribe</a> |
113 | 22 | 22 | ||
114 | === modified file 'src/postorius/templates/postorius/login.html' | |||
115 | --- src/postorius/templates/postorius/login.html 2012-03-23 14:40:25 +0000 | |||
116 | +++ src/postorius/templates/postorius/login.html 2012-05-17 15:51:26 +0000 | |||
117 | @@ -5,7 +5,7 @@ | |||
118 | 5 | 5 | ||
119 | 6 | <h2>Login with username and password</h2> | 6 | <h2>Login with username and password</h2> |
120 | 7 | 7 | ||
122 | 8 | <form action="" method="post" class="login mm_clear"> | 8 | <form action="" method="post" class="login mm_clear"> {% csrf_token %} |
123 | 9 | {{ form.as_p }} | 9 | {{ form.as_p }} |
124 | 10 | <div class="field"> | 10 | <div class="field"> |
125 | 11 | <button class="btn btn-primary" type="submit">{% trans "Login" %}</button> | 11 | <button class="btn btn-primary" type="submit">{% trans "Login" %}</button> |
126 | @@ -17,7 +17,7 @@ | |||
127 | 17 | <!-- | 17 | <!-- |
128 | 18 | <h2>Login using OpenID</h2> | 18 | <h2>Login using OpenID</h2> |
129 | 19 | 19 | ||
131 | 20 | <form method="post" action="{% url socialauth_begin 'openid' %}"> | 20 | <form method="post" action="{% url socialauth_begin 'openid' %}"> {% csrf_token %} |
132 | 21 | OpenID URL: <input type="text" name="openid_identifier" /> | 21 | OpenID URL: <input type="text" name="openid_identifier" /> |
133 | 22 | <input type="submit" value="Login using OpenID" /> | 22 | <input type="submit" value="Login using OpenID" /> |
134 | 23 | </form> | 23 | </form> |
135 | @@ -27,7 +27,7 @@ | |||
136 | 27 | 27 | ||
137 | 28 | <h2>Login using BrowserID</h2> | 28 | <h2>Login using BrowserID</h2> |
138 | 29 | 29 | ||
140 | 30 | <form method="post" action="{% url socialauth_complete "browserid" %}"> | 30 | <form method="post" action="{% url socialauth_complete "browserid" %}"> {% csrf_token %} |
141 | 31 | <input type="hidden" name="assertion" value="" /> | 31 | <input type="hidden" name="assertion" value="" /> |
142 | 32 | <a rel="nofollow" id="browserid" href="#"><img src="{{ STATIC_URL }}postorius/default/img/sign_in_blue.png" alt="Login using BrowserID" /></a> | 32 | <a rel="nofollow" id="browserid" href="#"><img src="{{ STATIC_URL }}postorius/default/img/sign_in_blue.png" alt="Login using BrowserID" /></a> |
143 | 33 | </form> | 33 | </form> |
144 | @@ -36,7 +36,7 @@ | |||
145 | 36 | {% block additionaljs %} | 36 | {% block additionaljs %} |
146 | 37 | <!-- Include BrowserID JavaScript --> | 37 | <!-- Include BrowserID JavaScript --> |
147 | 38 | <script src="https://browserid.org/include.js" type="text/javascript"></script> | 38 | <script src="https://browserid.org/include.js" type="text/javascript"></script> |
149 | 39 | <!-- Setup click handler that retieves BrowserID assertion code and sends | 39 | <!-- Setup click handler that receives BrowserID assertion code and sends |
150 | 40 | POST data --> | 40 | POST data --> |
151 | 41 | <script type="text/javascript"> | 41 | <script type="text/javascript"> |
152 | 42 | $(function () { | 42 | $(function () { |
153 | 43 | 43 | ||
154 | === modified file 'src/postorius/templates/postorius/menu/general.html' | |||
155 | --- src/postorius/templates/postorius/menu/general.html 2011-06-24 14:21:23 +0000 | |||
156 | +++ src/postorius/templates/postorius/menu/general.html 2012-05-17 15:51:26 +0000 | |||
157 | @@ -68,9 +68,9 @@ | |||
158 | 68 | {% trans "advertised" %} Link:TODO | 68 | {% trans "advertised" %} Link:TODO |
159 | 69 | </a> | 69 | </a> |
160 | 70 | </li> | 70 | </li> |
162 | 71 | <li {% if selected == "anonymus_list" %}id="selected"{% endif %}> | 71 | <li {% if selected == "anonymous_list" %}id="selected"{% endif %}> |
163 | 72 | <a href="{% comment %}{% url ... %}{% endcomment %}"> | 72 | <a href="{% comment %}{% url ... %}{% endcomment %}"> |
165 | 73 | {% trans "anonymus_list" %} Link:TODO | 73 | {% trans "anonymous_list" %} Link:TODO |
166 | 74 | </a> | 74 | </a> |
167 | 75 | </li> | 75 | </li> |
168 | 76 | </ul></div> | 76 | </ul></div> |
169 | 77 | 77 | ||
170 | === modified file 'src/postorius/templates/postorius/menu/maintanance.html' | |||
171 | --- src/postorius/templates/postorius/menu/maintanance.html 2011-07-21 14:47:41 +0000 | |||
172 | +++ src/postorius/templates/postorius/menu/maintanance.html 2012-05-17 15:51:26 +0000 | |||
173 | @@ -9,7 +9,7 @@ | |||
174 | 9 | {% trans "Archive" %} #TODO link | 9 | {% trans "Archive" %} #TODO link |
175 | 10 | </a> | 10 | </a> |
176 | 11 | </li> | 11 | </li> |
178 | 12 | <li {% if selected == "auto_resonder" %}id="selected"{% endif %}> | 12 | <li {% if selected == "auto_responder" %}id="selected"{% endif %}> |
179 | 13 | <a href="{% url list_settings fqdn_listname=fqdn_listname visible_section='Automatic Responses' visible_option=None %}"> | 13 | <a href="{% url list_settings fqdn_listname=fqdn_listname visible_section='Automatic Responses' visible_option=None %}"> |
180 | 14 | {% trans "Auto Responder" %} | 14 | {% trans "Auto Responder" %} |
181 | 15 | </a> | 15 | </a> |
182 | @@ -52,9 +52,9 @@ | |||
183 | 52 | {% trans "Message" %} Link:TODO | 52 | {% trans "Message" %} Link:TODO |
184 | 53 | </a> | 53 | </a> |
185 | 54 | </li> | 54 | </li> |
187 | 55 | <li {% if selected == "filter_receipent" %}id="selected"{% endif %}> | 55 | <li {% if selected == "filter_recipient" %}id="selected"{% endif %}> |
188 | 56 | <a href="{% comment %}{% url ... %}{% endcomment %}"> | 56 | <a href="{% comment %}{% url ... %}{% endcomment %}"> |
190 | 57 | {% trans "Receipent" %} Link:TODO | 57 | {% trans "Recipient" %} Link:TODO |
191 | 58 | </a> | 58 | </a> |
192 | 59 | </li> | 59 | </li> |
193 | 60 | <li {% if selected == "filter_spam" %}id="selected"{% endif %}> | 60 | <li {% if selected == "filter_spam" %}id="selected"{% endif %}> |
194 | 61 | 61 | ||
195 | === modified file 'src/postorius/templates/postorius/menu/subscriptions.html' | |||
196 | --- src/postorius/templates/postorius/menu/subscriptions.html 2012-03-13 21:01:27 +0000 | |||
197 | +++ src/postorius/templates/postorius/menu/subscriptions.html 2012-05-17 15:51:26 +0000 | |||
198 | @@ -14,14 +14,14 @@ | |||
199 | 14 | {% trans "Subscribe" %} | 14 | {% trans "Subscribe" %} |
200 | 15 | </a> | 15 | </a> |
201 | 16 | <div><ul class="menu"> | 16 | <div><ul class="menu"> |
203 | 17 | <li{% if selected == "join_adress" %}id="selected"{% endif %}> | 17 | <li{% if selected == "join_address" %}id="selected"{% endif %}> |
204 | 18 | <a href="{% comment %}{% url ... %}TODO add List{% endcomment %}"> | 18 | <a href="{% comment %}{% url ... %}TODO add List{% endcomment %}"> |
206 | 19 | {% trans "Join Adress" %} Link:TODO | 19 | {% trans "Join Address" %} Link:TODO |
207 | 20 | </a> | 20 | </a> |
208 | 21 | </li> | 21 | </li> |
209 | 22 | <li{% if selected == "owner_adress" %}id="selected"{% endif %}> | 22 | <li{% if selected == "owner_adress" %}id="selected"{% endif %}> |
210 | 23 | <a href="{% comment %}{% url ... %}TODO add List{% endcomment %}"> | 23 | <a href="{% comment %}{% url ... %}TODO add List{% endcomment %}"> |
212 | 24 | {% trans "Owner Adress" %} Link:TODO | 24 | {% trans "Owner Address" %} Link:TODO |
213 | 25 | </a> | 25 | </a> |
214 | 26 | </li> | 26 | </li> |
215 | 27 | <li{% if selected == "mass_subscribe" %}id="selected"{% endif %}> | 27 | <li{% if selected == "mass_subscribe" %}id="selected"{% endif %}> |
216 | @@ -38,7 +38,7 @@ | |||
217 | 38 | <div><ul class="menu"> | 38 | <div><ul class="menu"> |
218 | 39 | <li{% if selected == "leave_adress" %}id="selected"{% endif %}> | 39 | <li{% if selected == "leave_adress" %}id="selected"{% endif %}> |
219 | 40 | <a href="{% comment %}{% url ... %}TODO add List{% endcomment %}"> | 40 | <a href="{% comment %}{% url ... %}TODO add List{% endcomment %}"> |
221 | 41 | {% trans "Leave Adress" %} Link:TODO | 41 | {% trans "Leave Address" %} Link:TODO |
222 | 42 | </a> | 42 | </a> |
223 | 43 | </li> | 43 | </li> |
224 | 44 | </ul></div> | 44 | </ul></div> |
225 | 45 | 45 | ||
226 | === modified file 'src/postorius/templates/postorius/user_mailmansettings.html' | |||
227 | --- src/postorius/templates/postorius/user_mailmansettings.html 2012-03-23 17:24:59 +0000 | |||
228 | +++ src/postorius/templates/postorius/user_mailmansettings.html 2012-05-17 15:51:26 +0000 | |||
229 | @@ -55,7 +55,7 @@ | |||
230 | 55 | <h2>List Preferences Overview</h2> | 55 | <h2>List Preferences Overview</h2> |
231 | 56 | <p><em class="errorlist">Sample output: not real</em></p> | 56 | <p><em class="errorlist">Sample output: not real</em></p> |
232 | 57 | <input id="btnHide" type="button" value="{% trans "Hide Descriptions" %}"/> | 57 | <input id="btnHide" type="button" value="{% trans "Hide Descriptions" %}"/> |
234 | 58 | <form action="#"> | 58 | <form action="#"> {% csrf_token %} |
235 | 59 | <table class="table table-bordered table-striped"> | 59 | <table class="table table-bordered table-striped"> |
236 | 60 | <tr> | 60 | <tr> |
237 | 61 | <th>{% trans "Setting" %}</th> | 61 | <th>{% trans "Setting" %}</th> |
238 | 62 | 62 | ||
239 | === modified file 'src/postorius/templates/postorius/user_settings.html' | |||
240 | --- src/postorius/templates/postorius/user_settings.html 2012-03-23 14:40:25 +0000 | |||
241 | +++ src/postorius/templates/postorius/user_settings.html 2012-05-17 15:51:26 +0000 | |||
242 | @@ -16,9 +16,9 @@ | |||
243 | 16 | <div class="mm_boxHeader"> | 16 | <div class="mm_boxHeader"> |
244 | 17 | {% trans "Content" %} | 17 | {% trans "Content" %} |
245 | 18 | </div> | 18 | </div> |
247 | 19 | <p>{%trans "Use this page to manage your account. You'll be able to see a list of your subscirbed lists, modify these membership settings of the list and your personal preferences in user_settings <a href='https://bugs.launchpad.net/mailman/+bug/821438' >LP:821438</a> is solved <br>" %}</p> | 19 | <p>{%trans "Use this page to manage your account. You'll be able to see a list of your subscribed lists, modify these membership settings of the list and your personal preferences in user_settings <a href='https://bugs.launchpad.net/mailman/+bug/821438' >LP:821438</a> is solved <br>" %}</p> |
248 | 20 | {% if form %} | 20 | {% if form %} |
250 | 21 | <form action="" method="post" class="user" name="user"> | 21 | <form action="" method="post" class="user" name="user"> {% csrf_token %} |
251 | 22 | <ul class=""> | 22 | <ul class=""> |
252 | 23 | {{ form.as_div }} | 23 | {{ form.as_div }} |
253 | 24 | <li class="field"> | 24 | <li class="field"> |
Hi Richard,
thank you for the fix! I've merged into trunk (revision 65).