Changes between Version 7 and Version 8 of CookBookMultiLevelMultiComponentDataModel


Ignore:
Timestamp:
Dec 3, 2005, 5:49:09 AM (18 years ago)
Author:
Antonio Cavedoni
Comment:

added syntax highlighting to the code samples

Legend:

Unmodified
Added
Removed
Modified
  • CookBookMultiLevelMultiComponentDataModel

    v7 v8  
    77There are times when you have data/content that has many-to-one relationships. This is very easy to accomodate, just as [http://www.djangoproject.com/documentation/models/many_to_one/ this example] demonstrates. Here is code similar to that of the example:
    88{{{
     9#!python
    910from django.core import meta
    1011
Back to Top