Changes between Initial Version and Version 3 of Ticket #3681


Ignore:
Timestamp:
Mar 8, 2007, 11:09:09 PM (17 years ago)
Author:
Malcolm Tredinnick
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3681 – Description

    initial v3  
    33I placed a newform calss "inline" in a model. It works fine but breaks manage.py syncdb
    44
    5 
     5{{{
     6#!python
    67class MyModel(models.Model):
    78    name = models.CharField(maxlength=200)   
     
    1112        name = forms.CharField(label="Name", max_length=200)
    1213        descr = forms.CharField(label="Description", max_length=200)
    13 
    14 
     14}}}
Back to Top