Google App Engine + Form Validation
- by Iwona
Hi,
I would like to do google app engine form validation but I dont know how to do it?
I tried like this:
from google.appengine.ext.db import djangoforms
from django import newforms as forms
class SurveyForm(forms.Form):
occupations_choices = (
('1', ""),
('2', "Undergraduate student"),
('3', "Postgraduate student (MSc)"),
…