Django

Code

Changeset 130

Show
Ignore:
Timestamp:
07/16/05 20:00:25 (3 years ago)
Author:
adrian
Message:

Fixed ReST errors in docs/tutorial02.txt

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/tutorial02.txt

    r129 r130  
    178178  correspond to the appropriate HTML input widget. Each type of field knows 
    179179  how to display itself in the Django admin. 
    180 * ``DateTimeField``s get free JavaScript shortcuts. Dates get a "Today" 
     180* Each ``DateTimeField`` gets free JavaScript shortcuts. Dates get a "Today" 
    181181  shortcut and calendar popup, and times get a "Now" shortcut and a convenient 
    182182  popup that lists commonly entered times. 
    183 * The bottom part of the page gives you a couple of options: 
    184   * Save -- Saves changes and returns to the changelist page for this type of 
    185     object. 
    186   * Save and continue editing -- Saves changes and reloads the admin page for 
    187     this object. 
    188   * Save and add another -- Saves changes and loads a new, blank form for this 
    189     type of object. 
    190   * Delete -- Displays a delete confirmation page. 
     183 
     184The bottom part of the page gives you a couple of options: 
     185 
     186* Save -- Saves changes and returns to the change-list page for this type of 
     187  object. 
     188* Save and continue editing -- Saves changes and reloads the admin page for 
     189  this object. 
     190* Save and add another -- Saves changes and loads a new, blank form for this 
     191  type of object. 
     192* Delete -- Displays a delete confirmation page. 
    191193 
    192194Change the "Date published" by clicking the "Today" and "Now" shortcuts. Then