Fixed ReST errors in docs/tutorial02.txt

git-svn-id: http://code.djangoproject.com/svn/django/trunk@130 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-07-17 01:00:25 +00:00
parent c012d6ccf1
commit f926982800
1 changed files with 11 additions and 9 deletions

View File

@ -177,17 +177,19 @@ Things to note here:
* The different model field types (``meta.DateTimeField``, ``meta.CharField``)
correspond to the appropriate HTML input widget. Each type of field knows
how to display itself in the Django admin.
* ``DateTimeField``s get free JavaScript shortcuts. Dates get a "Today"
* Each ``DateTimeField`` gets free JavaScript shortcuts. Dates get a "Today"
shortcut and calendar popup, and times get a "Now" shortcut and a convenient
popup that lists commonly entered times.
* The bottom part of the page gives you a couple of options:
* Save -- Saves changes and returns to the changelist page for this type of
object.
* Save and continue editing -- Saves changes and reloads the admin page for
this object.
* Save and add another -- Saves changes and loads a new, blank form for this
type of object.
* Delete -- Displays a delete confirmation page.
The bottom part of the page gives you a couple of options:
* Save -- Saves changes and returns to the change-list page for this type of
object.
* Save and continue editing -- Saves changes and reloads the admin page for
this object.
* Save and add another -- Saves changes and loads a new, blank form for this
type of object.
* Delete -- Displays a delete confirmation page.
Change the "Date published" by clicking the "Today" and "Now" shortcuts. Then
click "Save and continue editing." Then click "History" in the upper right.