Changeset 5825 for django/trunk/docs/overview.txt
- Timestamp:
- 08/06/07 21:33:11 (1 year ago)
- Files:
-
- django/trunk/docs/overview.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/overview.txt
r5803 r5825 55 55 56 56 With 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::57 is created on the fly, no code generation necessary:: 58 58 59 59 >>> from mysite.models import Reporter, Article … … 125 125 >>> r.delete() 126 126 127 A dynamic admin interface: It's not just scaffolding -- it's the whole house127 A dynamic admin interface: it's not just scaffolding -- it's the whole house 128 128 ============================================================================ 129 129 … … 251 251 'base', which has defined a bunch of blocks, and fill the blocks with the 252 252 following 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.253 in templates: each template has to define only what's unique to that template. 254 254 255 255 Here's what the "base.html" template might look like::
