fixed syntax error
1 parent 59ea8e6 commit a7d2342cc0477d5f5d6d80ff294cc28289221a1d
@benste benste authored on 24 Jun 2011
Showing 2 changed files
View
2
■■■
templates/mailman-django/menu/administration.html
{% load i18n %}
 
{% block menu_administration %}
Administration
<a href="{% url administration %}"> {% trans "Administration" %}</a>
<div id="menu_administration"><ul>
<li {% if selected == "domains" %}id="selected"{% endif %}>
<a href="{% url domains %}">
{% trans "Domains" %}
View
4
views.py
try:
c = Client('http://localhost:8001/3.0', API_USER, API_PASS)
except Exception, e:
return render_to_response('mailman-django/errors/generic.html',
{'message': "Unexpected error:"+ e})
{'message': "Unexpected error:"+ e.message})
 
try:
lists = c.lists
return render_to_response(template, {'lists': lists})
except Exception, e:
return render_to_response('mailman-django/errors/generic.html',
{'message': "Unexpected error:"+ e})
{'message': "Unexpected error:"+ e.message})
 
 
def list_info(request, fqdn_listname = None,
template = 'mailman-django/lists/info.html'):