i'm trying, without any luck, to fill a form with default values

in my application we have

-------
class Form:
   """basic form validation"""
   pass

class Controller:
   def index(self):
       print form

    @validator
    def submit(self):
       some advanced validation that is not appropriate to put in the
form class
       if errors:
           self.form_errors{}= errors
           return self.index()
-------

the issue i keep running into, is that i can't find a way to push any
data from the request / untained info on the submit into a reprint of
the index.

does anyone have a suggestion?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" 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/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to