summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2012-11-20 20:53:08 -0300
committerRamiro Morales <cramm0@gmail.com>2012-11-20 21:05:32 -0300
commit8fdb28219df22245d7e50b4e8374d8567ca84f0f (patch)
tree544d183ee3acd5e7dffbbf3d1bc85a9612ff2033
parenta32f30c79c1be8e088917bced0f97760a92045ef (diff)
Fixed #19331 (again) use the right admin named URL.
This allows us to get the trailing slash in URLs without having to manually assemble and hard-code them. See also commits e9497a, a222d6, f51eab, 5a9e12.
-rw-r--r--django/contrib/admin/templates/admin/auth/user/change_password.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/admin/templates/admin/auth/user/change_password.html b/django/contrib/admin/templates/admin/auth/user/change_password.html
index b4e94a1360..64020aecb3 100644
--- a/django/contrib/admin/templates/admin/auth/user/change_password.html
+++ b/django/contrib/admin/templates/admin/auth/user/change_password.html
@@ -13,7 +13,7 @@
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
&rsaquo; <a href="{% url 'admin:app_list' app_label=opts.app_label %}">{{ opts.app_label|capfirst|escape }}</a>
&rsaquo; <a href="{% url opts|admin_urlname:'changelist' %}">{{ opts.verbose_name_plural|capfirst }}</a>
-&rsaquo; <a href="{% url opts|admin_urlname:'changelist' %}{{ original.pk }}/">{{ original|truncatewords:"18" }}</a>
+&rsaquo; <a href="{% url opts|admin_urlname:'change' original.pk|admin_urlquote %}">{{ original|truncatewords:"18" }}</a>
&rsaquo; {% trans 'Change password' %}
</div>
{% endblock %}