Provide fully qualified module paths to the url lookup template tag for the account profile view, to make sure they succeed.

- Legacy-Id: 7592
This commit is contained in:
Henrik Levkowetz 2014-04-12 17:53:39 +00:00
parent 454c9d83cb
commit c2a935190e
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@
<h1>Confirm new email address</h1>
{% if success %}
<p>Your account with login name '{{ username }}' has been updated to include the email address '{{ email }}'.</p>
<p>You may now wish to <a href="{% url "ietfauth.views.profile" %}">edit your profile</a>.</p>
<p>You may now wish to <a href="{% url "ietf.ietfauth.views.profile" %}">edit your profile</a>.</p>
{% else %}
<p>An error has occured when attempting to add the email address '{{ email }}' to your account '{{ username }}'.<p>
<ul>

View file

@ -10,7 +10,7 @@
{% for email in new_emails %}
<p><b>A confirmation email has been sent to {{email}}. It will be added to your account after you click on the link it contains.</b></p>
{% endfor %}
<p>You may <a href="{% url "ietfauth.views.profile" %}">continue editing your profile</a>.</p>
<p>You may <a href="{% url "ietf.ietfauth.views.profile" %}">continue editing your profile</a>.</p>
{% else %}
<p>An error has occured when attempting to update your account.<p>
{% if error %}<p>{{ error }}</p>{% endif %}