added some comments to view
1 parent 36fe7d3 commit 88559047f82db81ea16b1f1aacfc1524face6c55
@Florian Fuchs Florian Fuchs authored on 14 Apr 2015
Showing 1 changed file
View
23
src/postorius/views/list.py
"""
# Get the list and cache the archivers property.
m_list = utils.get_client().get_list(list_id)
archivers = m_list.archivers
 
# Process form submission.
if request.method == 'POST':
# Make a list if active archivers to make comparing easier
current = [key for key in archivers.keys() if archivers[key]]
posted = request.POST.getlist('archivers')
 
# These should be activated
to_activate = [arc for arc in posted if arc not in current]
for arc in to_activate:
archivers[arc] = True
to_disable = [arc for arc in current if arc not in posted and
arc in current]
for arc in to_disable:
archivers[arc] = False
archivers = m_list.archivers
 
# Add feedback messages to session.
if len(to_activate) > 0:
messages.success(request,
_('You activated new archivers for this list: '
'{0}'.format(', '.join(to_activate))))
if len(to_disable) > 0:
messages.success(request,
_('You disabled the following archivers: '
'{0}'.format(', '.join(to_disable))))
enabled = [key for key in archivers.keys() if archivers[key] is True]
initial = {'archivers': enabled}
 
# Re-cache list of archivers after update.
archivers = m_list.archivers
 
# Instantiate form with current archiver data.
initial = {'archivers': [key for key in archivers.keys()
if archivers[key] is True]}
form = ListArchiverForm(initial=initial, archivers=archivers)
 
return render_to_response('postorius/lists/archival_options.html',
{'list': m_list,
'form': form,
'archivers': archivers},