Changes between Version 6 and Version 7 of CookBookNewformsAdminAndUser
- Timestamp:
- Aug 9, 2008, 12:30:41 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CookBookNewformsAdminAndUser
v6 v7 8 8 #!python 9 9 10 # models.py10 # app/models.py 11 11 12 from django.db import models 12 13 from django.contrib.auth.models import User 13 14 … … 16 17 content = models.TextField() 17 18 18 # a dmin.py19 # app/admin.py 19 20 21 from app.models import Post 20 22 from django.contrib import admin 21 23