Changeset 477
- Timestamp:
- 08/10/05 16:46:40 (3 years ago)
- Files:
-
- django/trunk/django/models/core.py (modified) (1 diff)
- django/trunk/docs/tutorial02.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/models/core.py
r388 r477 76 76 class FlatFile(meta.Model): 77 77 db_table = 'flatfiles' 78 verbose_name = 'flat page' 78 79 fields = ( 79 80 meta.CharField('url', 'URL', maxlength=100, validator_list=[validators.isAlphaNumericURL], django/trunk/docs/tutorial02.txt
r440 r477 76 76 77 77 By default, you should see four types of editable content: groups, users, 78 redirects and flat files. These are core features Django ships with by default.78 redirects and flat pages. These are core features Django ships with by default. 79 79 80 80 .. _"I can't log in" questions: http://www.djangoproject.com/documentation/faq/#the-admin-site
