Hi

I'm new with Django and I can't figure out a method to do what I want,
that is to say inserting html dynamically in my page (I'm not very
good in english so I'll do my best to explain it with an example)

Let's say the goal of the page is to let the user build a
"storyboard". A storyboard is just a succession of many elements that
the user can chose to add by clicking on links. When the user comes on
the page, it's empty. There are a few links to add elements to the
storyboard.

An element can be just a title (as a charfield) or it can be a more
complex thing (combination of image and textfield etc..). So in order
to help the user to build his storyboard, I already have those
elements in templates (pre-built forms in fact that could be just html
code in my database). The user just needs to click on a link and here
it is, it adds the html code of the element in the page.

The thing is that each time the user clicks on a link, I want the page
to keep its appearence. If the user wants to add 3 titles, 4 image
fields, and a textfield, he just clicks on the related links, and then
he can fill in all the forms. I also want the user to be able to
manage each element separately. Save or delete..

I just can't figure out how to do this. How do I tell Django to add
some stuff in a page like that ?
In ajax I'd just have a view to load an element that would be called
as the user clicks on a link, and then get back the html code of the
element and add it into my page wherever I want. But without ajax, I
really don't know.

If someone could understand my problem and help me it would be great.

Thx.

Bibi



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