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.
This commit is contained in:
parent
a32f30c79c
commit
8fdb28219d
|
@ -13,7 +13,7 @@
|
|||
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
|
||||
› <a href="{% url 'admin:app_list' app_label=opts.app_label %}">{{ opts.app_label|capfirst|escape }}</a>
|
||||
› <a href="{% url opts|admin_urlname:'changelist' %}">{{ opts.verbose_name_plural|capfirst }}</a>
|
||||
› <a href="{% url opts|admin_urlname:'changelist' %}{{ original.pk }}/">{{ original|truncatewords:"18" }}</a>
|
||||
› <a href="{% url opts|admin_urlname:'change' original.pk|admin_urlquote %}">{{ original|truncatewords:"18" }}</a>
|
||||
› {% trans 'Change password' %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in New Issue