Skip to content

Commit 21b2330

Browse files
committed
Removed an newly introduced url() name parameter.
- Legacy-Id: 11184
1 parent 9ceb753 commit 21b2330

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

ietf/ietfauth/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
url(r'^logout/$', logout),
1111
# url(r'^loggedin/$', 'ietf_loggedin'),
1212
# url(r'^loggedout/$', 'logged_out'),
13-
url(r'^profile/$', 'profile', name="account_profile"),
13+
url(r'^profile/$', 'profile'),
1414
# (r'^login/(?P<user>[a-z0-9.@]+)/(?P<passwd>.+)$', 'url_login'),
1515
url(r'^testemail/$', 'test_email'),
1616
url(r'^create/$', 'create_account'),

ietf/templates/community/subscription.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ <h2>Existing subscriptions</h2>
3737

3838
<h2>Add new subscription</h2>
3939

40-
<p class="text-muted">The email addresses you can choose between are those registered in <a href="{% url "account_profile" %}">your profile</a>.</p>
40+
<p class="text-muted">The email addresses you can choose between are those registered in <a href="{% url "ietf.ietfauth.views.profile" %}">your profile</a>.</p>
4141

4242
{% if form.fields.email.queryset %}
4343
<form method="post">
@@ -51,7 +51,7 @@ <h2>Add new subscription</h2>
5151
{% endbuttons %}
5252
</form>
5353
{% else %}
54-
<div class="alert alert-danger">You do not have any active email addresses registered with your account. Go to <a href="{% url "account_profile" %}">your profile and add or activate one</a>.</div>
54+
<div class="alert alert-danger">You do not have any active email addresses registered with your account. Go to <a href="{% url "ietf.ietfauth.views.profile" %}">your profile and add or activate one</a>.</div>
5555

5656
<a class="btn btn-default" href="{{ clist.get_absolute_url }}">Back to list</a>
5757
{% endif %}

0 commit comments

Comments
 (0)