Fixed #17486 -- Updated the welcome page of new projects to reflect the new structure created by startproject. Thanks aashu_dwivedi.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17323 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Aymeric Augustin 2012-01-01 21:54:33 +00:00
parent 1aaa0dd098
commit 9cce7a5ea8
1 changed files with 1 additions and 1 deletions

View File

@ -1083,7 +1083,7 @@ EMPTY_URLCONF_TEMPLATE = """
<p>Of course, you haven't actually done any work yet. Here's what to do next:</p> <p>Of course, you haven't actually done any work yet. Here's what to do next:</p>
<ul> <ul>
<li>If you plan to use a database, edit the <code>DATABASES</code> setting in <code>{{ project_name }}/settings.py</code>.</li> <li>If you plan to use a database, edit the <code>DATABASES</code> setting in <code>{{ project_name }}/settings.py</code>.</li>
<li>Start your first app by running <code>python {{ project_name }}/manage.py startapp [appname]</code>.</li> <li>Start your first app by running <code>python manage.py startapp [appname]</code>.</li>
</ul> </ul>
</div> </div>