Removed an newly introduced url() name parameter.

- Legacy-Id: 11184
This commit is contained in:
Henrik Levkowetz 2016-05-13 09:09:37 +00:00
parent 9ceb753a29
commit 21b2330b6a
2 changed files with 3 additions and 3 deletions

View file

@ -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<user>[a-z0-9.@]+)/(?P<passwd>.+)$', 'url_login'),
url(r'^testemail/$', 'test_email'),
url(r'^create/$', 'create_account'),

View file

@ -37,7 +37,7 @@
<h2>Add new subscription</h2>
<p class="text-muted">The email addresses you can choose between are those registered in <a href="{% url "account_profile" %}">your profile</a>.</p>
<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>
{% if form.fields.email.queryset %}
<form method="post">
@ -51,7 +51,7 @@
{% endbuttons %}
</form>
{% else %}
<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>
<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>
<a class="btn btn-default" href="{{ clist.get_absolute_url }}">Back to list</a>
{% endif %}