filtered POST processing layout as well
1 parent ff44f84 commit 65b8ebe149f9a46519c6b1711ea755903739a7a8
@benste benste authored on 8 Jul 2011
Showing 2 changed files
View
2
■■■
templates/mailman-django/lists/settings.html
{% if message %}
<p id="message">{{ message }}</p>
{% endif %}
 
<form action="{% url list_settings fqdn_listname %}" method="post" class="list_settings">
<form action="{% url list_settings fqdn_listname %}?section={{visible_section}}&option={{visible_option}}" method="post" class="list_settings">
{{ form.as_div }}
 
<div class="field">
<button type="submit">{%trans "Save changes" %}</button>
View
24
views.py
to show only parts of the settings
"""
message = ""
#check for GET values
try:
visible_section=request.GET["section"]
except:
visible_section=None
try:
visible_option=request.GET["option"]
except:
visible_option=None
try: visible_section=request.GET["section"]
except:visible_section=None
try: visible_option=request.GET["option"]
except:visible_option=None
#Create the Connection
try:
c = Client('http://localhost:8001/3.0', API_USER, API_PASS)
the_list = c.get_list(fqdn_listname)
#raise Exception(form)#debug
return render_to_response(template, {'form': form,
'message': message,
'fqdn_listname': the_list.settings['fqdn_listname']})
'fqdn_listname': the_list.settings['fqdn_listname'],
'visible_option':visible_option,
'visible_section':visible_section,
})
 
@login_required
def mass_subscribe(request, fqdn_listname = None,
template = 'mailman-django/lists/mass_subscribe.html'):