I am using the app engine patch sample that uses django templates and
if you want to get values from a submitted form then you need to
create an instance of the form like this
class UserProfileForm(forms.Form):
        wf_first_name = forms.CharField()
        wf_last_name = forms.CharField()
        wf_title = forms.CharField()
        wf_street_address = forms.CharField()

and inside the post [request.method=='POST']
you will go like this
existingUserForm = UserProfileForm(request.POST)
if(request.method =="POST"):
if existingUserForm.is_valid():
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to