Hi,

First you should have an attribute "name" on your select. It's needed to
pass the value when the form is submitted.

If your select's name is "foos_combo", then your code you'll look like this:

def foo_relatory(request):

    if request.method == 'POST':
        foos_combo = request.POST['foos_combo']
        return HttpResponse(foos_combo)

    else:
        return render_to_response('foo_relatory.html',
                         {'title'       : title,
                          'show_filter_foos': True,
                         },
                         context_instance=RequestContext(request))


HTH,

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

Reply via email to