1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #28457 -- Updated the design of the 'Congrats' page for new Django projects.

Developed by Timothy Allen and Chad Whitman of The Wharton School with
shepherding from Aymeric Augustin and Collin Anderson.
This commit is contained in:
Timothy Allen
2017-08-07 10:33:55 -04:00
committed by Tim Graham
parent 0a24714b26
commit 5fe9b7b40a
5 changed files with 443 additions and 58 deletions

View File

@@ -195,7 +195,7 @@ class DebugViewTests(LoggingCaptureMixin, SimpleTestCase):
response = self.client.get('/')
self.assertContains(
response,
"<h2>Congratulations on your first Django-powered page.</h2>"
"<h2>The install worked successfully! Congratulations!</h2>"
)
@override_settings(ROOT_URLCONF='view_tests.regression_21530_urls')