Merge lp:~wacky/postorius/django_1_5 into lp:postorius

Proposed by Richard Wackerbarth
Status: Merged
Merged at revision: 91
Proposed branch: lp:~wacky/postorius/django_1_5
Merge into: lp:postorius
Diff against target: 681 lines (+99/-68)
32 files modified
src/postorius/templates/postorius/base.html (+7/-7)
src/postorius/templates/postorius/confirm_dialog.html (+1/-0)
src/postorius/templates/postorius/domain_index.html (+1/-0)
src/postorius/templates/postorius/domain_new.html (+2/-1)
src/postorius/templates/postorius/errors/generic.html (+1/-0)
src/postorius/templates/postorius/lists/held_messages.html (+5/-4)
src/postorius/templates/postorius/lists/index.html (+3/-2)
src/postorius/templates/postorius/lists/mass_subscribe.html (+2/-1)
src/postorius/templates/postorius/lists/members.html (+1/-0)
src/postorius/templates/postorius/lists/metrics.html (+1/-0)
src/postorius/templates/postorius/lists/new.html (+2/-1)
src/postorius/templates/postorius/lists/settings.html (+3/-2)
src/postorius/templates/postorius/lists/subscribe.html (+2/-1)
src/postorius/templates/postorius/lists/subscriptions.html (+3/-2)
src/postorius/templates/postorius/lists/summary.html (+4/-3)
src/postorius/templates/postorius/lists/unsubscribe.html (+1/-0)
src/postorius/templates/postorius/login.html (+3/-2)
src/postorius/templates/postorius/menu/administration.html (+7/-6)
src/postorius/templates/postorius/menu/general.html (+9/-8)
src/postorius/templates/postorius/menu/index.html (+1/-0)
src/postorius/templates/postorius/menu/info.html (+1/-0)
src/postorius/templates/postorius/menu/list_nav.html (+9/-8)
src/postorius/templates/postorius/menu/maintanance.html (+6/-5)
src/postorius/templates/postorius/menu/settings_nav.html (+4/-3)
src/postorius/templates/postorius/menu/subscriptions.html (+5/-4)
src/postorius/templates/postorius/menu/user_nav.html (+4/-3)
src/postorius/templates/postorius/menu/user_options.html (+1/-0)
src/postorius/templates/postorius/site_settings.html (+1/-0)
src/postorius/templates/postorius/user_mailmansettings.html (+1/-0)
src/postorius/templates/postorius/user_profile.html (+1/-0)
src/postorius/templates/postorius/user_settings.html (+6/-5)
src/postorius/templates/postorius/user_todos.html (+1/-0)
To merge this branch: bzr merge lp:~wacky/postorius/django_1_5
Reviewer Review Type Date Requested Status
Florian Fuchs Approve
Review via email: mp+127060@code.launchpad.net

Description of the change

Django 1.5 will require that URL names be quoted

These changes conform to the revised form and continue to support django 1.4 by loading the "future" version of the url tag.

To post a comment you must log in.
Revision history for this message
Florian Fuchs (flo-fuchs) wrote :

Hi Richard,

thank you very much for taking the time and changing all those url names in the templates! This makes great sense!

I'm merging your branch into the trunk now.

Florian

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'src/postorius/templates/postorius/base.html'
--- src/postorius/templates/postorius/base.html 2012-08-29 15:03:37 +0000
+++ src/postorius/templates/postorius/base.html 2012-09-28 20:33:22 +0000
@@ -1,4 +1,4 @@
1{% load i18n %}<!doctype html>1{% load url from future %}{% load i18n %}<!doctype html>
2<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]--><!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]--><!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]--><!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]--><!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]--><head>2<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]--><!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]--><!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]--><!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]--><!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]--><head>
3 <meta charset="UTF-8">3 <meta charset="UTF-8">
4 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">4 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
@@ -22,18 +22,18 @@
22 <div class="mm_header">22 <div class="mm_header">
23 <div class="mm_canvas">23 <div class="mm_canvas">
24 <ul class="mm_metaNav">24 <ul class="mm_metaNav">
25 <li><a class="mm_lists" href="{% url list_index %}">Lists</a></li>25 <li><a class="mm_lists" href="{% url 'list_index' %}">Lists</a></li>
26 {% if user.is_authenticated %}26 {% if user.is_authenticated %}
27 <li><a class="mm_todos" href="{% url user_todos %}">Todos</a></li>27 <li><a class="mm_todos" href="{% url 'user_todos' %}">Todos</a></li>
28 {% endif %}28 {% endif %}
29 {% if user.is_superuser %}29 {% if user.is_superuser %}
30 <li><a class="mm_settings" href="{% url site_settings %}">Settings</a></li>30 <li><a class="mm_settings" href="{% url 'site_settings' %}">Settings</a></li>
31 {% endif %}31 {% endif %}
32 <li>{% if user.is_authenticated %}<a class="mm_logout" href="{% url user_logout %}">Logout</a>{% else %}<a class="mm_user" href="{% url user_login %}">Login</a>{% endif %}</li>32 <li>{% if user.is_authenticated %}<a class="mm_logout" href="{% url 'user_logout' %}">Logout</a>{% else %}<a class="mm_user" href="{% url 'user_login' %}">Login</a>{% endif %}</li>
33 </ul>33 </ul>
34 <a href="{% url list_index %}" class="mm_logo"><img src="{{ STATIC_URL }}/postorius/img/mailman_logo_trans.png" alt="{% trans 'Home' %}" /></a>34 <a href="{% url 'list_index' %}" class="mm_logo"><img src="{{ STATIC_URL }}/postorius/img/mailman_logo_trans.png" alt="{% trans 'Home' %}" /></a>
35 {% if user.is_authenticated %}35 {% if user.is_authenticated %}
36 <div class="mm_loginName">Logged in as: <a href="{% url user_profile %}">{{ user.username }}</a></div>36 <div class="mm_loginName">Logged in as: <a href="{% url 'user_profile' %}">{{ user.username }}</a></div>
37 {% endif %}37 {% endif %}
38 </div>38 </div>
39 </div>39 </div>
4040
=== modified file 'src/postorius/templates/postorius/confirm_dialog.html'
--- src/postorius/templates/postorius/confirm_dialog.html 2012-05-17 15:07:28 +0000
+++ src/postorius/templates/postorius/confirm_dialog.html 2012-09-28 20:33:22 +0000
@@ -1,4 +1,5 @@
1{% extends extend_template %}1{% extends extend_template %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block main %}5{% block main %}
56
=== modified file 'src/postorius/templates/postorius/domain_index.html'
--- src/postorius/templates/postorius/domain_index.html 2012-03-23 14:40:25 +0000
+++ src/postorius/templates/postorius/domain_index.html 2012-09-28 20:33:22 +0000
@@ -1,4 +1,5 @@
1{% extends "postorius/base.html" %}1{% extends "postorius/base.html" %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block main %}5{% block main %}
56
=== modified file 'src/postorius/templates/postorius/domain_new.html'
--- src/postorius/templates/postorius/domain_new.html 2012-05-17 15:07:28 +0000
+++ src/postorius/templates/postorius/domain_new.html 2012-09-28 20:33:22 +0000
@@ -1,10 +1,11 @@
1{% extends extend_template %}1{% extends extend_template %}
2{% load url from future %}
2{% load i18n %} 3{% load i18n %}
34
4{% block main %}5{% block main %}
5 {% include 'postorius/menu/settings_nav.html' %}6 {% include 'postorius/menu/settings_nav.html' %}
6 <h1>{% trans "Add a new Domain" %}</h1>7 <h1>{% trans "Add a new Domain" %}</h1>
7 <form action="{% url domain_new %}" method="post" class="well"> {% csrf_token %}8 <form action="{% url 'domain_new' %}" method="post" class="well"> {% csrf_token %}
8 {{ form.as_p }}9 {{ form.as_p }}
9 <div class="field">10 <div class="field">
10 <button class="btn btn-success" type="submit">{% trans "Create Domain" %}</button>11 <button class="btn btn-success" type="submit">{% trans "Create Domain" %}</button>
1112
=== modified file 'src/postorius/templates/postorius/errors/generic.html'
--- src/postorius/templates/postorius/errors/generic.html 2012-07-17 15:01:11 +0000
+++ src/postorius/templates/postorius/errors/generic.html 2012-09-28 20:33:22 +0000
@@ -1,4 +1,5 @@
1{% extends "postorius/base.html" %}1{% extends "postorius/base.html" %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block main %}5{% block main %}
56
=== modified file 'src/postorius/templates/postorius/lists/held_messages.html'
--- src/postorius/templates/postorius/lists/held_messages.html 2012-03-23 17:24:59 +0000
+++ src/postorius/templates/postorius/lists/held_messages.html 2012-09-28 20:33:22 +0000
@@ -1,4 +1,5 @@
1{% extends "postorius/base.html" %}1{% extends "postorius/base.html" %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block body_class %}list_summary{% endblock %}5{% block body_class %}list_summary{% endblock %}
@@ -25,10 +26,10 @@
25 <td>{{ msg.reason }}</td>26 <td>{{ msg.reason }}</td>
26 <td>{{ msg.hold_date }}</td>27 <td>{{ msg.hold_date }}</td>
27 <td class="mm_action">28 <td class="mm_action">
28 <a href="{% url accept_held_message list.fqdn_listname msg.id %}" class="btn btn-mini btn-success">{% trans 'Accept' %}</a>29 <a href="{% url 'accept_held_message' list.fqdn_listname msg.id %}" class="btn btn-mini btn-success">{% trans 'Accept' %}</a>
29 <a href="{% url defer_held_message list.fqdn_listname msg.id %}" class="btn btn-mini btn-warning">{% trans 'Defer' %}</a>30 <a href="{% url 'defer_held_message' list.fqdn_listname msg.id %}" class="btn btn-mini btn-warning">{% trans 'Defer' %}</a>
30 <a href="{% url reject_held_message list.fqdn_listname msg.id %}" class="btn btn-mini btn-danger">{% trans 'Reject' %}</a>31 <a href="{% url 'reject_held_message' list.fqdn_listname msg.id %}" class="btn btn-mini btn-danger">{% trans 'Reject' %}</a>
31 <a href="{% url discard_held_message list.fqdn_listname msg.id %}" class="btn btn-mini btn-danger">{% trans 'Discard' %}</a>32 <a href="{% url 'discard_held_message' list.fqdn_listname msg.id %}" class="btn btn-mini btn-danger">{% trans 'Discard' %}</a>
32 </td>33 </td>
33 </td>34 </td>
34 </tr>35 </tr>
3536
=== modified file 'src/postorius/templates/postorius/lists/index.html'
--- src/postorius/templates/postorius/lists/index.html 2012-03-23 14:40:25 +0000
+++ src/postorius/templates/postorius/lists/index.html 2012-09-28 20:33:22 +0000
@@ -1,10 +1,11 @@
1{% extends "postorius/base.html" %}1{% extends "postorius/base.html" %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block main %}5{% block main %}
5 {% if user.is_superuser %}6 {% if user.is_superuser %}
6 <ul class="mm_nav">7 <ul class="mm_nav">
7 <li class="mm_new_list"><a class="btn btn-mini btn-success" href="{% url list_new %}">{% trans "New List" %}</a></li>8 <li class="mm_new_list"><a class="btn btn-mini btn-success" href="{% url 'list_new' %}">{% trans "New List" %}</a></li>
8 </ul> 9 </ul>
9 {% endif %}10 {% endif %}
10 <h1>{% trans 'Lists' %}</h1>11 <h1>{% trans 'Lists' %}</h1>
@@ -21,7 +22,7 @@
21 {% for list in lists %}22 {% for list in lists %}
22 <tr>23 <tr>
23 <td>24 <td>
24 <a href="{% url list_summary fqdn_listname=list.fqdn_listname %}">{{ list.display_name }}</a>25 <a href="{% url 'list_summary' fqdn_listname=list.fqdn_listname %}">{{ list.display_name }}</a>
25 </td>26 </td>
26 <td>{{ list.fqdn_listname }}</td>27 <td>{{ list.fqdn_listname }}</td>
27 <td>{{ list.settings.description }}</td>28 <td>{{ list.settings.description }}</td>
2829
=== modified file 'src/postorius/templates/postorius/lists/mass_subscribe.html'
--- src/postorius/templates/postorius/lists/mass_subscribe.html 2012-05-17 15:07:28 +0000
+++ src/postorius/templates/postorius/lists/mass_subscribe.html 2012-09-28 20:33:22 +0000
@@ -1,4 +1,5 @@
1{% extends "postorius/base.html" %}1{% extends "postorius/base.html" %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block main %}5{% block main %}
@@ -6,7 +7,7 @@
6 {% include 'postorius/menu/list_nav.html' %}7 {% include 'postorius/menu/list_nav.html' %}
7 {% endif %}8 {% endif %}
8 <h1>{% trans "Mass Subscribe" %} <span>- {{list.fqdn_listname}}</span></h1>9 <h1>{% trans "Mass Subscribe" %} <span>- {{list.fqdn_listname}}</span></h1>
9 <form action="{% url mass_subscribe list.fqdn_listname %}" method="post" class="well"> {% csrf_token %}10 <form action="{% url 'mass_subscribe' list.fqdn_listname %}" method="post" class="well"> {% csrf_token %}
10 {{ form.as_p }}11 {{ form.as_p }}
11 <button class="btn btn-primary" type="submit">{% trans "Subscribe users" %}</button>12 <button class="btn btn-primary" type="submit">{% trans "Subscribe users" %}</button>
12 </form>13 </form>
1314
=== modified file 'src/postorius/templates/postorius/lists/members.html'
--- src/postorius/templates/postorius/lists/members.html 2012-07-20 21:33:26 +0000
+++ src/postorius/templates/postorius/lists/members.html 2012-09-28 20:33:22 +0000
@@ -1,4 +1,5 @@
1{% extends "postorius/base.html" %}1{% extends "postorius/base.html" %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block main %}5{% block main %}
56
=== modified file 'src/postorius/templates/postorius/lists/metrics.html'
--- src/postorius/templates/postorius/lists/metrics.html 2012-03-23 23:29:31 +0000
+++ src/postorius/templates/postorius/lists/metrics.html 2012-09-28 20:33:22 +0000
@@ -1,4 +1,5 @@
1{% extends "postorius/base.html" %}1{% extends "postorius/base.html" %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block main %}5{% block main %}
56
=== modified file 'src/postorius/templates/postorius/lists/new.html'
--- src/postorius/templates/postorius/lists/new.html 2012-05-17 15:07:28 +0000
+++ src/postorius/templates/postorius/lists/new.html 2012-09-28 20:33:22 +0000
@@ -1,9 +1,10 @@
1{% extends extend_template %}1{% extends extend_template %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block main %}5{% block main %}
5 <h1>{% trans "Create a new List" %} {{ block.super }}</h1> 6 <h1>{% trans "Create a new List" %} {{ block.super }}</h1>
6 <form action="{% url list_new %}" method="post" class="well"> {% csrf_token %}7 <form action="{% url 'list_new' %}" method="post" class="well"> {% csrf_token %}
7 {{ form.as_p }}8 {{ form.as_p }}
8 <button class="btn btn-success" type="submit">{% trans "Create List" %}</button>9 <button class="btn btn-success" type="submit">{% trans "Create List" %}</button>
9 </form>10 </form>
1011
=== modified file 'src/postorius/templates/postorius/lists/settings.html'
--- src/postorius/templates/postorius/lists/settings.html 2012-09-23 02:35:28 +0000
+++ src/postorius/templates/postorius/lists/settings.html 2012-09-28 20:33:22 +0000
@@ -1,4 +1,5 @@
1{% extends extend_template %}1{% extends extend_template %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block main %}5{% block main %}
@@ -7,14 +8,14 @@
78
8 <ul class="nav nav-pills">9 <ul class="nav nav-pills">
9 {% for section in form_sections %}10 {% for section in form_sections %}
10 <li {% if section.0 == visible_section %}class="active"{% endif %}><a href="{% url list_settings fqdn_listname=list.fqdn_listname visible_section=section.0 visible_option=None %}">{{section.0}}</a></li>11 <li {% if section.0 == visible_section %}class="active"{% endif %}><a href="{% url 'list_settings' fqdn_listname=list.fqdn_listname visible_section=section.0 visible_option=None %}">{{section.0}}</a></li>
11 {% endfor %}12 {% endfor %}
12 </ul>13 </ul>
1314
14 {% if visible_section %}15 {% if visible_section %}
1516
16 <table class="well">17 <table class="well">
17 <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 %}18 <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 %}
18 {% for field in form %}19 {% for field in form %}
19 <tr><td>20 <tr><td>
20 {{ field.errors }}21 {{ field.errors }}
2122
=== modified file 'src/postorius/templates/postorius/lists/subscribe.html'
--- src/postorius/templates/postorius/lists/subscribe.html 2012-05-17 15:07:28 +0000
+++ src/postorius/templates/postorius/lists/subscribe.html 2012-09-28 20:33:22 +0000
@@ -1,9 +1,10 @@
1{% extends extend_template %}1{% extends extend_template %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block main %}5{% block main %}
5 <h1>{% trans 'Subscribe' %} <span>{{ list.fqdn_listname}}</span></h1>6 <h1>{% trans 'Subscribe' %} <span>{{ list.fqdn_listname}}</span></h1>
6 <form action="{% url list_subscribe list.fqdn_listname %}" method="post" class="list_subscribe"> {% csrf_token %}7 <form action="{% url 'list_subscribe' list.fqdn_listname %}" method="post" class="list_subscribe"> {% csrf_token %}
7 {{form.as_p}}8 {{form.as_p}}
8 <input class="btn btn-primary" type="submit" value="{% trans 'Subscribe' %}" />9 <input class="btn btn-primary" type="submit" value="{% trans 'Subscribe' %}" />
9 </form>10 </form>
1011
=== modified file 'src/postorius/templates/postorius/lists/subscriptions.html'
--- src/postorius/templates/postorius/lists/subscriptions.html 2012-05-17 15:07:28 +0000
+++ src/postorius/templates/postorius/lists/subscriptions.html 2012-09-28 20:33:22 +0000
@@ -1,10 +1,11 @@
1{% extends extend_template %}1{% extends extend_template %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block main %}5{% block main %}
5 {{list.list_name}} <span>{{list.display_name}}</span>6 {{list.list_name}} <span>{{list.display_name}}</span>
6 {% if form_subscribe %}7 {% if form_subscribe %}
7 <form action="{%url list_subscriptions list.fqdn_listname %}" method="post" class="subscribe mm_clear" name="subscribe"> {% csrf_token %}8 <form action="{%url 'list_subscriptions' list.fqdn_listname %}" method="post" class="subscribe mm_clear" name="subscribe"> {% csrf_token %}
8 {{ form_subscribe.as_div }}9 {{ form_subscribe.as_div }}
9 <div class="field">10 <div class="field">
10 <button type="submit">{% trans "Subscribe" %}</button>11 <button type="submit">{% trans "Subscribe" %}</button>
@@ -13,7 +14,7 @@
13 </form>14 </form>
14 {% endif %}15 {% endif %}
15 {% if form_unsubscribe %}16 {% if form_unsubscribe %}
16 <form action="{% url list_subscriptions list.fqdn_listname %}" method="post" class="unsubscribe mm_clear" name="unsubscribe"> {% csrf_token %}17 <form action="{% url 'list_subscriptions' list.fqdn_listname %}" method="post" class="unsubscribe mm_clear" name="unsubscribe"> {% csrf_token %}
17 {{ form_unsubscribe.as_div }}18 {{ form_unsubscribe.as_div }}
18 <div class="field">19 <div class="field">
19 <button type="submit">{% trans "Unsubscribe" %}</button>20 <button type="submit">{% trans "Unsubscribe" %}</button>
2021
=== modified file 'src/postorius/templates/postorius/lists/summary.html'
--- src/postorius/templates/postorius/lists/summary.html 2012-05-17 15:07:28 +0000
+++ src/postorius/templates/postorius/lists/summary.html 2012-09-28 20:33:22 +0000
@@ -1,4 +1,5 @@
1{% extends "postorius/base.html" %}1{% extends "postorius/base.html" %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block body_class %}list_summary{% endblock %}5{% block body_class %}list_summary{% endblock %}
@@ -15,13 +16,13 @@
15 16
16 <h2>{% trans 'Membership' %}</h2>17 <h2>{% trans 'Membership' %}</h2>
17 {% if user.is_authenticated %}18 {% if user.is_authenticated %}
18 <form action="{% url list_subscribe list.fqdn_listname %}" method="post" class="list_subscribe"> {% csrf_token %}19 <form action="{% url 'list_subscribe' list.fqdn_listname %}" method="post" class="list_subscribe"> {% csrf_token %}
19 {{subscribe_form.as_p}}20 {{subscribe_form.as_p}}
20 <input class="btn btn-success" type="submit" value="{% trans 'Subscribe' %}" />21 <input class="btn btn-success" type="submit" value="{% trans 'Subscribe' %}" />
21 <a href="{% url list_unsubscribe list.fqdn_listname user.email %}" class="btn btn-danger">Unsubscribe</a>22 <a href="{% url 'list_unsubscribe' list.fqdn_listname user.email %}" class="btn btn-danger">Unsubscribe</a>
22 </form>23 </form>
23 {% else %}24 {% else %}
24 <p>To subscribe or unsubscribe this list you have to be logged in.</p>25 <p>To subscribe or unsubscribe this list you have to be logged in.</p>
25 <p><a href="{% url user_login %}"class="btn btn-small btn-primary">Log In</a></p>26 <p><a href="{% url 'user_login' %}"class="btn btn-small btn-primary">Log In</a></p>
26 {% endif %}27 {% endif %}
27{% endblock %}28{% endblock %}
2829
=== modified file 'src/postorius/templates/postorius/lists/unsubscribe.html'
--- src/postorius/templates/postorius/lists/unsubscribe.html 2012-03-15 23:37:44 +0000
+++ src/postorius/templates/postorius/lists/unsubscribe.html 2012-09-28 20:33:22 +0000
@@ -1,4 +1,5 @@
1{% extends extend_template %}1{% extends extend_template %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block main %}5{% block main %}
56
=== modified file 'src/postorius/templates/postorius/login.html'
--- src/postorius/templates/postorius/login.html 2012-08-29 15:03:37 +0000
+++ src/postorius/templates/postorius/login.html 2012-09-28 20:33:22 +0000
@@ -1,4 +1,5 @@
1{% extends extend_template %}1{% extends extend_template %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block main %}5{% block main %}
@@ -17,7 +18,7 @@
17 <!--18 <!--
18 <h2>Login using OpenID</h2>19 <h2>Login using OpenID</h2>
1920
20 <form method="post" action="{% url socialauth_begin 'openid' %}"> {% csrf_token %}21 <form method="post" action="{% url 'socialauth_begin' 'openid' %}"> {% csrf_token %}
21 OpenID URL: <input type="text" name="openid_identifier" /> 22 OpenID URL: <input type="text" name="openid_identifier" />
22 <input type="submit" value="Login using OpenID" />23 <input type="submit" value="Login using OpenID" />
23 </form>24 </form>
@@ -27,7 +28,7 @@
2728
28 <h2>Login using BrowserID</h2>29 <h2>Login using BrowserID</h2>
2930
30 <form method="post" action="{% url socialauth_complete "browserid" %}"> {% csrf_token %}31 <form method="post" action="{% url 'socialauth_complete' "browserid" %}"> {% csrf_token %}
31 <input type="hidden" name="assertion" value="" />32 <input type="hidden" name="assertion" value="" />
32 <a rel="nofollow" id="browserid" href="#"><img src="{{ STATIC_URL }}postorius/img/sign_in_blue.png" alt="Login using BrowserID" /></a>33 <a rel="nofollow" id="browserid" href="#"><img src="{{ STATIC_URL }}postorius/img/sign_in_blue.png" alt="Login using BrowserID" /></a>
33 </form>34 </form>
3435
=== modified file 'src/postorius/templates/postorius/menu/administration.html'
--- src/postorius/templates/postorius/menu/administration.html 2011-07-21 14:47:41 +0000
+++ src/postorius/templates/postorius/menu/administration.html 2012-09-28 20:33:22 +0000
@@ -1,31 +1,32 @@
1{% load url from future %}
1{% load i18n %}2{% load i18n %}
23
3{% block menu_administration %}4{% block menu_administration %}
4 <a href="{% url administration %}"> {% trans "Administration" %}</a>5 <a href="{% url 'administration' %}"> {% trans "Administration" %}</a>
5 <div id="menu_administration"><ul> 6 <div id="menu_administration"><ul>
6 <li {% if selected == "domains" %}id="selected"{% endif %}>7 <li {% if selected == "domains" %}id="selected"{% endif %}>
7 <a href="{% url domains %}">8 <a href="{% url 'domains' %}">
8 {% trans "Domains" %}9 {% trans "Domains" %}
9 </a>10 </a>
10 </li>11 </li>
11 <li {% if selected == "all_lists" %}id="selected"{% endif %}>12 <li {% if selected == "all_lists" %}id="selected"{% endif %}>
12 <a href="{% url list_index %}">13 <a href="{% url 'list_index' %}">
13 {% trans "All Lists" %}14 {% trans "All Lists" %}
14 </a>15 </a>
15 </li>16 </li>
16 <li {% if selected == "new_list" %}id="selected"{% endif %}>17 <li {% if selected == "new_list" %}id="selected"{% endif %}>
17 <a href="{% url list_new %}">18 <a href="{% url 'list_new' %}">
18 {% trans "New List" %}19 {% trans "New List" %}
19 </a>20 </a>
20 </li>21 </li>
21 {% if fqdn_listname %}22 {% if fqdn_listname %}
22 <li {% if selected == "delete_list" %}id="selected"{% endif %}>23 <li {% if selected == "delete_list" %}id="selected"{% endif %}>
23 <a href="{% url list_delete fqdn_listname=fqdn_listname %}">24 <a href="{% url 'list_delete' fqdn_listname=fqdn_listname %}">
24 {% trans "Delete List #TODO:really delete dialog" %}25 {% trans "Delete List #TODO:really delete dialog" %}
25 </a>26 </a>
26 </li>27 </li>
27 <li {% if selected == "administrivia" %}id="selected"{% endif %}>28 <li {% if selected == "administrivia" %}id="selected"{% endif %}>
28 <a href="{% url list_settings fqdn_listname=fqdn_listname visible_option='administrivia' visible_section=None%}"> 29 <a href="{% url 'list_settings' fqdn_listname=fqdn_listname visible_option='administrivia' visible_section=None%}">
29 {% trans "Administrivia" %}30 {% trans "Administrivia" %}
30 </a>31 </a>
31 </li>32 </li>
3233
=== modified file 'src/postorius/templates/postorius/menu/general.html'
--- src/postorius/templates/postorius/menu/general.html 2012-05-17 15:48:04 +0000
+++ src/postorius/templates/postorius/menu/general.html 2012-09-28 20:33:22 +0000
@@ -1,3 +1,4 @@
1{% load url from future %}
1{% load i18n %}2{% load i18n %}
23
3{% block menu_general %}4{% block menu_general %}
@@ -5,7 +6,7 @@
5 <div id="menu_general"><ul>6 <div id="menu_general"><ul>
6 7
7 <li {% if selected == "notifications" %}id="selected"{% endif %}>8 <li {% if selected == "notifications" %}id="selected"{% endif %}>
8 <a href="{% url domains %}">9 <a href="{% url 'domains' %}">
9 {% trans "Notifications" %} Link:TODO10 {% trans "Notifications" %} Link:TODO
10 </a>11 </a>
11 <div><ul>12 <div><ul>
@@ -22,7 +23,7 @@
22 </ul></div>23 </ul></div>
23 </li>24 </li>
24 <li {% if selected == "formatting" %}id="selected"{% endif %}>25 <li {% if selected == "formatting" %}id="selected"{% endif %}>
25 <a href="{% url list_new %}">26 <a href="{% url 'list_new' %}">
26 {% trans "Formatting" %} Link:TODO27 {% trans "Formatting" %} Link:TODO
27 </a>28 </a>
28 <div><ul>29 <div><ul>
@@ -44,17 +45,17 @@
44 </ul></div> 45 </ul></div>
45 </li>46 </li>
46 <li {% if selected == "gateways" %}id="selected"{% endif %}>47 <li {% if selected == "gateways" %}id="selected"{% endif %}>
47 <a href="{% comment %}{% url list_delete list.fqdn_listname %}TODO add List{% endcomment %}">48 <a href="{% comment %}{% url 'list_delete' list.fqdn_listname %}TODO add List{% endcomment %}">
48 {% trans "Gateways" %} Link:TODO49 {% trans "Gateways" %} Link:TODO
49 </a>50 </a>
50 </li>51 </li>
51 <li{% if selected == "language" %}id="selected"{% endif %}>52 <li{% if selected == "language" %}id="selected"{% endif %}>
52 <a href="{% comment %}{% url list_settings list.fqdn_listname %}TODO add List{% endcomment %}">53 <a href="{% comment %}{% url 'list_settings' list.fqdn_listname %}TODO add List{% endcomment %}">
53 {% trans "Language" %} Link:TODO54 {% trans "Language" %} Link:TODO
54 </a>55 </a>
55 </li>56 </li>
56 <li{% if selected == "subscription_rules" %}id="selected"{% endif %}>57 <li{% if selected == "subscription_rules" %}id="selected"{% endif %}>
57 <a href="{% comment %}{% url list_settings list.fqdn_listname %}TODO add List{% endcomment %}">58 <a href="{% comment %}{% url 'list_settings' list.fqdn_listname %}TODO add List{% endcomment %}">
58 {% trans "Subscription rules" %} Link:TODO59 {% trans "Subscription rules" %} Link:TODO
59 </a>60 </a>
60 <div><ul>61 <div><ul>
@@ -76,12 +77,12 @@
76 </ul></div> 77 </ul></div>
77 </li>78 </li>
78 <li{% if selected == "bounces" %}id="selected"{% endif %}>79 <li{% if selected == "bounces" %}id="selected"{% endif %}>
79 <a href="{% comment %}{% url list_settings list.fqdn_listname %}TODO add List{% endcomment %}">80 <a href="{% comment %}{% url 'list_settings' list.fqdn_listname %}TODO add List{% endcomment %}">
80 {% trans "Bounces" %} Link:TODO81 {% trans "Bounces" %} Link:TODO
81 </a>82 </a>
82 </li>83 </li>
83 <li{% if selected == "digest" %}id="selected"{% endif %}>84 <li{% if selected == "digest" %}id="selected"{% endif %}>
84 <a href="{% comment %}{% url list_settings list.fqdn_listname %}TODO add List{% endcomment %}">85 <a href="{% comment %}{% url 'list_settings' list.fqdn_listname %}TODO add List{% endcomment %}">
85 {% trans "Digest" %} Link:TODO86 {% trans "Digest" %} Link:TODO
86 </a>87 </a>
87 <div><ul>88 <div><ul>
@@ -103,7 +104,7 @@
103 </ul> </div> 104 </ul> </div>
104 </li> 105 </li>
105 <li{% if selected == "description" %}id="selected"{% endif %}>106 <li{% if selected == "description" %}id="selected"{% endif %}>
106 <a href="{% comment %}{% url list_settings list.fqdn_listname %}TODO add List{% endcomment %}">107 <a href="{% comment %}{% url 'list_settings' list.fqdn_listname %}TODO add List{% endcomment %}">
107 {% trans "List Description" %} Link:TODO108 {% trans "List Description" %} Link:TODO
108 </a>109 </a>
109 </li> 110 </li>
110111
=== modified file 'src/postorius/templates/postorius/menu/index.html'
--- src/postorius/templates/postorius/menu/index.html 2011-07-21 14:47:41 +0000
+++ src/postorius/templates/postorius/menu/index.html 2012-09-28 20:33:22 +0000
@@ -1,3 +1,4 @@
1{% load url from future %}
1{% load i18n %}2{% load i18n %}
23
3<!-- TODO use include "template" instead of with .. as .. end with-->4<!-- TODO use include "template" instead of with .. as .. end with-->
45
=== modified file 'src/postorius/templates/postorius/menu/info.html'
--- src/postorius/templates/postorius/menu/info.html 2011-06-24 14:21:23 +0000
+++ src/postorius/templates/postorius/menu/info.html 2012-09-28 20:33:22 +0000
@@ -1,3 +1,4 @@
1{% load url from future %}
1{% load i18n %}2{% load i18n %}
23
3{% block menu_info %}4{% block menu_info %}
45
=== modified file 'src/postorius/templates/postorius/menu/list_nav.html'
--- src/postorius/templates/postorius/menu/list_nav.html 2012-07-20 21:33:26 +0000
+++ src/postorius/templates/postorius/menu/list_nav.html 2012-09-28 20:33:22 +0000
@@ -1,14 +1,15 @@
1{% load url from future %}
1{% load i18n %}2{% load i18n %}
2<div class="mm_subHeader">3<div class="mm_subHeader">
3 <span class="mm_context">{{ list.fqdn_listname }}</span>4 <span class="mm_context">{{ list.fqdn_listname }}</span>
4 <ul class="mm_nav">5 <ul class="mm_nav">
5 <li class="mm_list_summary"><a href="{% url list_summary list.fqdn_listname %}">{% trans "Info" %}</a></li>6 <li class="mm_list_summary"><a href="{% url 'list_summary' list.fqdn_listname %}">{% trans "Info" %}</a></li>
6 <li class="mm_list_held_members"><a href="{% url list_members list.fqdn_listname %}">{% trans "Members" %}</a></li>7 <li class="mm_list_held_members"><a href="{% url 'list_members' list.fqdn_listname %}">{% trans "Members" %}</a></li>
7 <li class="mm_list_held_messages"><a href="{% url list_held_messages list.fqdn_listname %}">{% trans "Held Messages" %}</a></li>8 <li class="mm_list_held_messages"><a href="{% url 'list_held_messages' list.fqdn_listname %}">{% trans "Held Messages" %}</a></li>
8 <li class="mm_list_metrics"><a href="{% url list_metrics list.fqdn_listname %}">{% trans "Metrics" %}</a></li>9 <li class="mm_list_metrics"><a href="{% url 'list_metrics' list.fqdn_listname %}">{% trans "Metrics" %}</a></li>
9 <li class="mm_list_settings"><a href="{% url list_settings list.fqdn_listname %}">{% trans "Settings" %}</a></li>10 <li class="mm_list_settings"><a href="{% url 'list_settings' list.fqdn_listname %}">{% trans "Settings" %}</a></li>
10 <li class="mm_mass_subscribe"><a href="{% url mass_subscribe list.fqdn_listname %}">{% trans "Mass Subscribe" %}</a></li>11 <li class="mm_mass_subscribe"><a href="{% url 'mass_subscribe' list.fqdn_listname %}">{% trans "Mass Subscribe" %}</a></li>
11 <li class="mm_delete_list"><a class="btn btn-mini btn-danger" href="{% url list_delete list.fqdn_listname %}">{% trans "Delete List" %}</a></li>12 <li class="mm_delete_list"><a class="btn btn-mini btn-danger" href="{% url 'list_delete' list.fqdn_listname %}">{% trans "Delete List" %}</a></li>
12 <li class="mm_new_list"><a class="btn btn-mini btn-success" href="{% url list_new %}">{% trans "New List" %}</a></li>13 <li class="mm_new_list"><a class="btn btn-mini btn-success" href="{% url 'list_new' %}">{% trans "New List" %}</a></li>
13 </ul> 14 </ul>
14</div>15</div>
1516
=== modified file 'src/postorius/templates/postorius/menu/maintanance.html'
--- src/postorius/templates/postorius/menu/maintanance.html 2012-05-17 15:48:04 +0000
+++ src/postorius/templates/postorius/menu/maintanance.html 2012-09-28 20:33:22 +0000
@@ -1,3 +1,4 @@
1{% load url from future %}
1{% load i18n %}2{% load i18n %}
23
3{% block menu_maintanance %}4{% block menu_maintanance %}
@@ -5,27 +6,27 @@
5 {% trans "Maintanance" %}6 {% trans "Maintanance" %}
6 <div><ul class="menu">7 <div><ul class="menu">
7 <li {% if selected == "archive" %}id="selected"{% endif %}>8 <li {% if selected == "archive" %}id="selected"{% endif %}>
8 <a href="{% url domains %}">9 <a href="{% url 'domains' %}">
9 {% trans "Archive" %} #TODO link10 {% trans "Archive" %} #TODO link
10 </a>11 </a>
11 </li>12 </li>
12 <li {% if selected == "auto_responder" %}id="selected"{% endif %}>13 <li {% if selected == "auto_responder" %}id="selected"{% endif %}>
13 <a href="{% url list_settings fqdn_listname=fqdn_listname visible_section='Automatic Responses' visible_option=None %}">14 <a href="{% url 'list_settings' fqdn_listname=fqdn_listname visible_section='Automatic Responses' visible_option=None %}">
14 {% trans "Auto Responder" %}15 {% trans "Auto Responder" %}
15 </a>16 </a>
16 <div><ul>17 <div><ul>
17 <li {% if selected == "autorespond_postings" %}id="selected"{% endif %}>18 <li {% if selected == "autorespond_postings" %}id="selected"{% endif %}>
18 <a href="{% url list_settings fqdn_listname=fqdn_listname visible_section='Automatic Responses' visible_option='autorespond_postings' %}">19 <a href="{% url 'list_settings' fqdn_listname=fqdn_listname visible_section='Automatic Responses' visible_option='autorespond_postings' %}">
19 {% trans "Postings" %}20 {% trans "Postings" %}
20 </a>21 </a>
21 </li>22 </li>
22 <li {% if selected == "autorespond_requests" %}id="selected"{% endif %}>23 <li {% if selected == "autorespond_requests" %}id="selected"{% endif %}>
23 <a href="{% url list_settings fqdn_listname=fqdn_listname visible_section='Automatic Responses' visible_option='autorespond_requests' %}">24 <a href="{% url 'list_settings' fqdn_listname=fqdn_listname visible_section='Automatic Responses' visible_option='autorespond_requests' %}">
24 {% trans "Requests" %}25 {% trans "Requests" %}
25 </a>26 </a>
26 </li>27 </li>
27 <li {% if selected == "autorespond_owner" %}id="selected"{% endif %}>28 <li {% if selected == "autorespond_owner" %}id="selected"{% endif %}>
28 <a href="{% url list_settings fqdn_listname=fqdn_listname visible_section='Automatic Responses' visible_option='autorespond_owner' %}">29 <a href="{% url 'list_settings' fqdn_listname=fqdn_listname visible_section='Automatic Responses' visible_option='autorespond_owner' %}">
29 {% trans "Owner" %}30 {% trans "Owner" %}
30 </a>31 </a>
31 </li> 32 </li>
3233
=== modified file 'src/postorius/templates/postorius/menu/settings_nav.html'
--- src/postorius/templates/postorius/menu/settings_nav.html 2012-03-14 17:43:32 +0000
+++ src/postorius/templates/postorius/menu/settings_nav.html 2012-09-28 20:33:22 +0000
@@ -1,6 +1,7 @@
1{% load url from future %}
1{% load i18n %}2{% load i18n %}
2<ul class="mm_nav">3<ul class="mm_nav">
3 <li><a href="{% url site_settings %}">{% trans "General" %}</a></li>4 <li><a href="{% url 'site_settings' %}">{% trans "General" %}</a></li>
4 <li><a href="{% url domain_index %}">{% trans "Domains" %}</a></li>5 <li><a href="{% url 'domain_index' %}">{% trans "Domains" %}</a></li>
5 <li><a class="btn btn-mini btn-success" href="{% url domain_new %}">{% trans "New Domain" %}</a></li>6 <li><a class="btn btn-mini btn-success" href="{% url 'domain_new' %}">{% trans "New Domain" %}</a></li>
6</ul> 7</ul>
78
=== modified file 'src/postorius/templates/postorius/menu/subscriptions.html'
--- src/postorius/templates/postorius/menu/subscriptions.html 2012-05-17 15:48:04 +0000
+++ src/postorius/templates/postorius/menu/subscriptions.html 2012-09-28 20:33:22 +0000
@@ -1,8 +1,9 @@
1{% load url from future %}
1{% load i18n %}2{% load i18n %}
23
3{% block menu_subscriptions %}4{% block menu_subscriptions %}
4 {% if fqdn_listname %}5 {% if fqdn_listname %}
5 <a href="{% url list_subscriptions fqdn_listname %}">{% trans "Subscriptions" %}</a>6 <a href="{% url 'list_subscriptions' fqdn_listname %}">{% trans "Subscriptions" %}</a>
6 <div><ul class="menu">7 <div><ul class="menu">
7 <li{% if selected == "description" %}id="selected"{% endif %}>8 <li{% if selected == "description" %}id="selected"{% endif %}>
8 <a href="{% comment %}{% url ... %}TODO add List{% endcomment %}">9 <a href="{% comment %}{% url ... %}TODO add List{% endcomment %}">
@@ -10,7 +11,7 @@
10 </a>11 </a>
11 </li>12 </li>
12 <li{% if selected == "subscribe" %}id="selected"{% endif %}>13 <li{% if selected == "subscribe" %}id="selected"{% endif %}>
13 <a href="{% url list_subscriptions fqdn_listname %}">14 <a href="{% url 'list_subscriptions' fqdn_listname %}">
14 {% trans "Subscribe" %}15 {% trans "Subscribe" %}
15 </a>16 </a>
16 <div><ul class="menu">17 <div><ul class="menu">
@@ -25,14 +26,14 @@
25 </a>26 </a>
26 </li> 27 </li>
27 <li{% if selected == "mass_subscribe" %}id="selected"{% endif %}>28 <li{% if selected == "mass_subscribe" %}id="selected"{% endif %}>
28 <a href="{% comment %}{% url mass_subscribe fqdn_listname=fqdn_listname %}TODO add List{% endcomment %}">29 <a href="{% comment %}{% url 'mass_subscribe' fqdn_listname=fqdn_listname %}TODO add List{% endcomment %}">
29 {% trans "Mass subscribe" %} 30 {% trans "Mass subscribe" %}
30 </a>31 </a>
31 </li> 32 </li>
32 </ul></div>33 </ul></div>
33 </li> 34 </li>
34 <li{% if selected == "remove" %}id="selected"{% endif %}>35 <li{% if selected == "remove" %}id="selected"{% endif %}>
35 <a href="{% url list_subscriptions fqdn_listname %}">36 <a href="{% url 'list_subscriptions' fqdn_listname %}">
36 {% trans "Unsubscribe" %}37 {% trans "Unsubscribe" %}
37 </a>38 </a>
38 <div><ul class="menu">39 <div><ul class="menu">
3940
=== modified file 'src/postorius/templates/postorius/menu/user_nav.html'
--- src/postorius/templates/postorius/menu/user_nav.html 2012-03-23 17:24:59 +0000
+++ src/postorius/templates/postorius/menu/user_nav.html 2012-09-28 20:33:22 +0000
@@ -1,6 +1,7 @@
1{% load url from future %}
1{% load i18n %}2{% load i18n %}
2<ul class="mm_nav">3<ul class="mm_nav">
3 <li><a href="{% url user_profile %}">{% trans "Profile" %}</a></li>4 <li><a href="{% url 'user_profile' %}">{% trans "Profile" %}</a></li>
4 <!--li><a href="{% url user_profile %}">{% trans "Web settings" %}</a></li-->5 <!--li><a href="{% url 'user_profile' %}">{% trans "Web settings" %}</a></li-->
5 <li><a href="{% url user_mailmansettings %}">{% trans "Mailman settings" %}</a></li>6 <li><a href="{% url 'user_mailmansettings' %}">{% trans "Mailman settings" %}</a></li>
6</ul> 7</ul>
78
=== modified file 'src/postorius/templates/postorius/menu/user_options.html'
--- src/postorius/templates/postorius/menu/user_options.html 2011-06-24 14:21:23 +0000
+++ src/postorius/templates/postorius/menu/user_options.html 2012-09-28 20:33:22 +0000
@@ -1,3 +1,4 @@
1{% load url from future %}
1{% load i18n %}2{% load i18n %}
23
3{% block menu_user_options %}4{% block menu_user_options %}
45
=== modified file 'src/postorius/templates/postorius/site_settings.html'
--- src/postorius/templates/postorius/site_settings.html 2012-03-23 14:40:25 +0000
+++ src/postorius/templates/postorius/site_settings.html 2012-09-28 20:33:22 +0000
@@ -1,4 +1,5 @@
1{% extends extend_template %}1{% extends extend_template %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block main %}5{% block main %}
56
=== modified file 'src/postorius/templates/postorius/user_mailmansettings.html'
--- src/postorius/templates/postorius/user_mailmansettings.html 2012-05-17 15:07:28 +0000
+++ src/postorius/templates/postorius/user_mailmansettings.html 2012-09-28 20:33:22 +0000
@@ -1,4 +1,5 @@
1{% extends extend_template %}1{% extends extend_template %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block main %}5{% block main %}
56
=== modified file 'src/postorius/templates/postorius/user_profile.html'
--- src/postorius/templates/postorius/user_profile.html 2012-03-23 17:24:59 +0000
+++ src/postorius/templates/postorius/user_profile.html 2012-09-28 20:33:22 +0000
@@ -1,4 +1,5 @@
1{% extends extend_template %}1{% extends extend_template %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block main %}5{% block main %}
56
=== modified file 'src/postorius/templates/postorius/user_settings.html'
--- src/postorius/templates/postorius/user_settings.html 2012-05-17 15:48:04 +0000
+++ src/postorius/templates/postorius/user_settings.html 2012-09-28 20:33:22 +0000
@@ -1,4 +1,5 @@
1{% extends extend_template %}1{% extends extend_template %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
45
@@ -30,21 +31,21 @@
30 </div>31 </div>
3132
32 <ul class="mm_actionButtons">33 <ul class="mm_actionButtons">
33 <li class="mm_user_settings"><a href="{% url user_settings %}">{% trans "My Account" %}</a></li>34 <li class="mm_user_settings"><a href="{% url 'user_settings' %}">{% trans "My Account" %}</a></li>
34 <li class="mm_user_subscriptions"><a href="{% url membership_settings %}">{% trans "All my Subscriptions" %}</a></li>35 <li class="mm_user_subscriptions"><a href="{% url 'membership_settings' %}">{% trans "All my Subscriptions" %}</a></li>
35 </ul> 36 </ul>
3637
37 {% if membership_lists %}38 {% if membership_lists %}
38 {% for list in membership_lists %}39 {% for list in membership_lists %}
39 <div class="mm_box mm_smallBox {% cycle 'mm_clear' '' %}">40 <div class="mm_box mm_smallBox {% cycle 'mm_clear' '' %}">
40 <div class="mm_boxHeader">41 <div class="mm_boxHeader">
41 <a href="{% url list_summary fqdn_listname=list.fqdn_listname%}">42 <a href="{% url 'list_summary' fqdn_listname=list.fqdn_listname%}">
42 {{ list.display_name }} {% if not list.settings.advertised %}(non-public){% endif %}43 {{ list.display_name }} {% if not list.settings.advertised %}(non-public){% endif %}
43 </a>44 </a>
44 </div>45 </div>
45 <ul>46 <ul>
46 <li><a href="{% url membership_settings fqdn_listname=list.fqdn_listname%}"> My Membership</li>47 <li><a href="{% url 'membership_settings' fqdn_listname=list.fqdn_listname%}"> My Membership</li>
47 <li><a href="{% url membership_settings fqdn_listname=list.fqdn_listname %}"> 48 <li><a href="{% url 'membership_settings' fqdn_listname=list.fqdn_listname %}">
48 My Subscription</a></li>49 My Subscription</a></li>
49 </ul>50 </ul>
50 </div>51 </div>
5152
=== modified file 'src/postorius/templates/postorius/user_todos.html'
--- src/postorius/templates/postorius/user_todos.html 2012-03-23 17:24:59 +0000
+++ src/postorius/templates/postorius/user_todos.html 2012-09-28 20:33:22 +0000
@@ -1,4 +1,5 @@
1{% extends extend_template %}1{% extends extend_template %}
2{% load url from future %}
2{% load i18n %}3{% load i18n %}
34
4{% block main %}5{% block main %}

Subscribers

People subscribed via source and target branches