I generate forms based on a modelform that references primary keys
from different models in my app.  A nested tuple is used to reference
these primary keys; the modelform can reference these primary keys
along with other values submitted from the form.

I want to send pickled data of a nested tuple, that I generate
dynamically, to a different user. If I pickle the nested tuple and
store it in a database table somewhere, the other user can generate
the form by unpickling the data and letting my views.py functions
generate the modelform form. The user can then submit the form and
save the modelform data.

Any ideas about how to do this effectively and efficiently in the
Django idiom?

Where should I store the pickled data?
How do I make that stored location accessible to my other user/users?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" 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/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to