[EMAIL PROTECTED] wrote:
> I'm just getting started with using Django to build a web app.
>
> Can anyone point me to an example of how to pull back a few rows of
> data from the database based on which checkboxes a user has selected?
>
> I've read through the "Manipulator" sections of the documentation and
> that is great--but I don't want to let users manipulate the data, just
> view parts of it based on checkboxes they select on a form.  Any
> samples I can look at?

maybe try to write static html form with those checkboxes. Add to it
submit button and
send those information from form via POST method to view. In view you
can do what you want,
build on it filter chain and used it to show rows.

Regards,
Jakub


--~--~---------~--~----~------------~-------~--~----~
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