Is it possible to access the POST information from within my forms.py file after a page submission? I am confused on how to access this information from within the constructor of if I can even do this.
-------------- forms.py -------------- from django import newforms as forms class CustomerAdd(forms.Form): def __init__(self, *args, **kwargs): super(CustomerAdd, self).__init__( *args, **kwargs) ---------------- views.py ---------------- if request.method == 'POST': form = CustomerAdd(request.POST) --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---