Opened 18 years ago
Last modified 18 years ago
#3681 closed
Placing newforms in model breaks manage.py syncdb — at Initial Version
Reported by: | Owned by: | Adrian Holovaty | |
---|---|---|---|
Component: | Forms | Version: | dev |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Hi
I placed a newform calss "inline" in a model. It works fine but breaks manage.py syncdb
class MyModel(models.Model):
name = models.CharField(maxlength=200)
descr = models.CharField(maxlength=300)
class EditForm(forms.Form):
name = forms.CharField(label="Name", max_length=200)
descr = forms.CharField(label="Description", max_length=200)
Note:
See TracTickets
for help on using tickets.