My application allows the user to select one or more days of the week
to apply to the current item. My model looks like
    applys_Mon = models.BooleanField("Mon")
    applys_Tue = models.BooleanField("Tue")
    applys_Wed = models.BooleanField("Wed")
    applys_Thu = models.BooleanField("Thu")
        (etc ...)
The add/change form will have one checkbox for each day of week.

This works but kind of doesn't look "right". Is there a more
appropriate way to do it? Note that I'm rolling my own web form, so it
doesn't matter if django doesn't translate the alternative model to
checkboxes.

Thanks


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to