Re: Django table with checkboxes

2011-08-05 Thread Stanislav Nedelchev
of creating input tags > > directly in your template. > > > Read this page which also explains how to validate your form on the > > serverside:https://docs.djangoproject.com/en/dev/topics/forms/ > > > Use a boolean field to generate a checkbox. > > > Best re

Django table with checkboxes

2011-08-01 Thread Stanislav Nedelchev
Hi everyone, I'm quite new to django and still learning. But I face a problem that i can't solve. I have the following very simple example. Let say that I have one model for Books. class Book(models.Model): name = models.CharField(max_length=50,unique = True) description = models.TextField