Django

Code

Show
Ignore:
Timestamp:
08/06/07 21:33:11 (1 year ago)
Author:
adrian
Message:

Fixed #5097 -- Made various updates and corrections to the documentation. Thanks, Nicola Larosa

Files:

Legend:

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

    r5803 r5825  
    5555 
    5656With that, you've got a free, and rich, Python API to access your data. The API 
    57 is created on the fly: No code generation necessary:: 
     57is created on the fly, no code generation necessary:: 
    5858 
    5959    >>> from mysite.models import Reporter, Article 
     
    125125    >>> r.delete() 
    126126 
    127 A dynamic admin interface: It's not just scaffolding -- it's the whole house 
     127A dynamic admin interface: it's not just scaffolding -- it's the whole house 
    128128============================================================================ 
    129129 
     
    251251'base', which has defined a bunch of blocks, and fill the blocks with the 
    252252following blocks." In short, that lets you dramatically cut down on redundancy 
    253 in templates: Each template has to define only what's unique to that template. 
     253in templates: each template has to define only what's unique to that template. 
    254254 
    255255Here's what the "base.html" template might look like::