Changeset 573
- Timestamp:
- 08/29/05 15:33:14 (3 years ago)
- Files:
-
- django/trunk/docs/tutorial01.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/tutorial01.txt
r549 r573 177 177 178 178 The code is straightforward. Each model is represented by a class that 179 subclasses ``django.core.meta.Model``. Each model a number of class variables,180 each of which represents a database field in the model.179 subclasses ``django.core.meta.Model``. Each model has a number of class 180 variables, each of which represents a database field in the model. 181 181 182 182 Each field is represented by an instance of a ``meta.*Field`` class -- e.g.,
