diff --git a/django/views/templates/default_urlconf.html b/django/views/templates/default_urlconf.html index e8e180f8bc..5092377bf4 100644 --- a/django/views/templates/default_urlconf.html +++ b/django/views/templates/default_urlconf.html @@ -1,19 +1,18 @@ {% load i18n %} -{% get_current_language_bidi as LANGUAGE_BIDI %} - +{% get_current_language as LANGUAGE_CODE %}{% get_current_language_bidi as LANGUAGE_BIDI %} + - {% translate "Django: the Web framework for perfectionists with deadlines." %} + {% translate "The install worked successfully! Congratulations!" %} -
- +

{% blocktranslate %}View release notes for Django {{ version }}{% endblocktranslate %}

-
- - - - - - - - - - - -
-

{% translate "The install worked successfully! Congratulations!" %}

+ +

{% translate "The install worked successfully! Congratulations!" %}

{% blocktranslate %}You are seeing this page because DEBUG=True is in your settings file and you have not configured any URLs.{% endblocktranslate %}

diff --git a/tests/view_tests/tests/test_debug.py b/tests/view_tests/tests/test_debug.py index a0da6e1adc..35a44451f2 100644 --- a/tests/view_tests/tests/test_debug.py +++ b/tests/view_tests/tests/test_debug.py @@ -243,7 +243,7 @@ class DebugViewTests(SimpleTestCase): response = self.client.get('/') self.assertContains( response, - "

The install worked successfully! Congratulations!

" + "

The install worked successfully! Congratulations!

" ) @override_settings(ROOT_URLCONF='view_tests.regression_21530_urls')