Re: How To Create A Form With Generic Relations In Django

2010-09-24 Thread Ryan McIntosh
r, 2010 10:17:02 GMT -06:00 US/Canada Central Subject: How To Create A Form With Generic Relations In Django Hi, How can I create a Form with normal form elements and generic elements together as ModelForm For using frontend CRUD. For example; Generic Model: class Todo(models.Model): user = mo

How To Create A Form With Generic Relations In Django

2010-09-24 Thread Harry
Hi, How can I create a Form with normal form elements and generic elements together as ModelForm For using frontend CRUD. For example; Generic Model: class Todo(models.Model): user = models.ForeignKey(User, related_name="todo") title = models.CharField(max_length=100, unique=False) slug =