Django

Code

Changeset 140

Show
Ignore:
Timestamp:
07/17/05 00:53:34 (3 years ago)
Author:
adrian
Message:

Fixed small formatting errors in [139]

Files:

Legend:

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

    r139 r140  
    395395 
    396396Let's add another improvement to the Poll change list page: Filters. Add the 
    397 following line to ``Poll.admin``: 
     397following line to ``Poll.admin``:: 
    398398 
    399399    list_filter = ('pub_date', ) 
     
    412412fields. 
    413413 
    414 This is shaping up well. Finally, let's add some search capability: 
     414This is shaping up well. Finally, let's add some search capability:: 
    415415 
    416416    search_fields = ('question', )