Hello!

I'm trying to reimplement legacy PHP-based app with django

The most interesting part is some sort of "registration"

It looks like:
* step1:
        user enter some information in form
* step2:
        app return next form where some select's choices "based" on values  
from step1
* step3:
        app shows conformation page with entered values + some others based  
on that values
        (<td> description </td><td> value</td>)

app doesn't uses database directly, instead it has xml based http  
gateway to work with database

so, i can't use django models, right?

step1/2 have a lot of input elements, so i don't want to hardcode  
forms in templates,
but i need a way to add "comment" entries in the middle of the form

What should i use to easy generating forms, validate and save values  
in django way?
i saw newforms module in sources (i use latest checkout), should i use  
it? and do validation in view on POST? or if it will be better to use  
custom manipulator?

I need a hint how this should dbe implemented in django way

btw, it seems that i can't store fields description in Form or field  
classes?

-- 
Pavel

--~--~---------~--~----~------------~-------~--~----~
 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
-~----------~----~----~----~------~----~------~--~---

Reply via email to