From 21b2330b6a7db360da7978a138ddd28ab07bff2d Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Fri, 13 May 2016 09:09:37 +0000 Subject: [PATCH] Removed an newly introduced url() name parameter. - Legacy-Id: 11184 --- ietf/ietfauth/urls.py | 2 +- ietf/templates/community/subscription.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ietf/ietfauth/urls.py b/ietf/ietfauth/urls.py index ecffbbf39..4d68db944 100644 --- a/ietf/ietfauth/urls.py +++ b/ietf/ietfauth/urls.py @@ -10,7 +10,7 @@ urlpatterns = patterns('ietf.ietfauth.views', url(r'^logout/$', logout), # url(r'^loggedin/$', 'ietf_loggedin'), # url(r'^loggedout/$', 'logged_out'), - url(r'^profile/$', 'profile', name="account_profile"), + url(r'^profile/$', 'profile'), # (r'^login/(?P[a-z0-9.@]+)/(?P.+)$', 'url_login'), url(r'^testemail/$', 'test_email'), url(r'^create/$', 'create_account'), diff --git a/ietf/templates/community/subscription.html b/ietf/templates/community/subscription.html index 0a4c337e5..56174f547 100644 --- a/ietf/templates/community/subscription.html +++ b/ietf/templates/community/subscription.html @@ -37,7 +37,7 @@

Add new subscription

-

The email addresses you can choose between are those registered in your profile.

+

The email addresses you can choose between are those registered in your profile.

{% if form.fields.email.queryset %}
@@ -51,7 +51,7 @@ {% endbuttons %}
{% else %} -
You do not have any active email addresses registered with your account. Go to your profile and add or activate one.
+
You do not have any active email addresses registered with your account. Go to your profile and add or activate one.
Back to list {% endif %}