I have some models like :

class UserOfSomeStuff(models.Model):
    [...]

class AvailableStuffToUse(models.Model):
    [...]

class CurrentlyUsedStuff(models.Model):
    user = models.ForeignKey(UserOfSomeStuff)
    used_stuff = models.ForeignKey(AvailableStuffToUse)


In my application I don't need to add new Users or new Stuff, I only 
need to change what Stuff is currently Used [1]
So I want to create a form which when bounded to an instance of 
CurrentlyUsedStuff renders the "user" in plain text, and when saved just 
updates the data, without creating a new object.

Is there a clean way to do this ?



[1] : it's a GUI for routing calls with asterisk/python/mysql if you mind



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