From df41b5a05d4e00e80e73afe629072e37873e767a Mon Sep 17 00:00:00 2001 From: Sjoerd Job Postmus Date: Thu, 20 Oct 2016 19:29:04 +0200 Subject: Fixed #28593 -- Added a simplified URL routing syntax per DEP 0201. Thanks Aymeric Augustin for shepherding the DEP and patch review. Thanks Marten Kenbeek and Tim Graham for contributing to the code. Thanks Tom Christie, Shai Berger, and Tim Graham for the docs. --- django/views/templates/technical_404.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'django/views/templates/technical_404.html') diff --git a/django/views/templates/technical_404.html b/django/views/templates/technical_404.html index ec518f658e..0bf5fd3cd0 100644 --- a/django/views/templates/technical_404.html +++ b/django/views/templates/technical_404.html @@ -52,7 +52,7 @@ {% for pattern in urlpatterns %}
  • {% for pat in pattern %} - {{ pat.regex.pattern }} + {{ pat.pattern }} {% if forloop.last and pat.name %}[name='{{ pat.name }}']{% endif %} {% endfor %}
  • -- cgit v1.3