diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-07-17 01:00:25 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-07-17 01:00:25 +0000 |
| commit | f926982800cd32fc136e4f60719e8ef5c03ae217 (patch) | |
| tree | 0bd420b30d754fcb84ea08d6a6c2672aa09fd596 /docs/tutorial02.txt | |
| parent | c012d6ccf1b4d4b73c0e2633d14e70fe8f04d252 (diff) | |
Fixed ReST errors in docs/tutorial02.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@130 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial02.txt')
| -rw-r--r-- | docs/tutorial02.txt | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/docs/tutorial02.txt b/docs/tutorial02.txt index 85020accc2..deaf4246db 100644 --- a/docs/tutorial02.txt +++ b/docs/tutorial02.txt @@ -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. |
