Changes between Version 2 and Version 3 of CookBookSplitModelsToFiles


Ignore:
Timestamp:
Nov 6, 2006, 9:26:21 PM (18 years ago)
Author:
Gary Wilson <gary.wilson@…>
Comment:

added some #!python's

Legend:

Unmodified
Added
Removed
Modified
  • CookBookSplitModelsToFiles

    v2 v3  
    77{{{apps/polls/models/__init__.py}}}:
    88{{{
     9#!python
    910from poll import Poll
    1011from choice import Choice
     
    1314{{{apps/polls/models/poll.py}}}:
    1415{{{
     16#!python
    1517from django.db import models
    1618
     
    2527{{{apps/polls/models/choice.py}}}:
    2628{{{
     29#!python
    2730from django.db import models
    2831from poll import Poll
Back to Top