Changes between Version 6 and Version 7 of CookBookNewformsAdminAndUser


Ignore:
Timestamp:
Aug 9, 2008, 12:30:41 PM (16 years ago)
Author:
oyvind
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CookBookNewformsAdminAndUser

    v6 v7  
    88#!python
    99
    10 # models.py
     10# app/models.py
    1111
     12from django.db import models
    1213from django.contrib.auth.models import User
    1314
     
    1617    content = models.TextField()
    1718
    18 # admin.py
     19# app/admin.py
    1920
     21from app.models import Post
    2022from django.contrib import admin
    2123
Back to Top