Hi  all,

I think it is more helpful if we can make form fields processing more
convenient which can reduce verbosity in views.

for example assume profile model/table has fields username and
password
in my form i write like    <input type='text'
name='profile[username']><input type='password'
name='profile[password]'>

so when this form is submitted, it would be cool if I can just do
like: request.POST['profile'] which gives me a dict of names and
values specific to that model/table whatever
so if I do request.POST['profile'] = {'username': value entered by
user, 'password': value entered by user}

is this feature already there? or can it be achieved in any other way?
is it related to webob or pyramid?
I am ready to work on this to make it available in pyramid, so please
give me pointers to work on this.


-- 
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to pylons-discuss@googlegroups.com.
To unsubscribe from this group, send email to 
pylons-discuss+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en.

Reply via email to