I'm generating html forms from models using ModelForm. When I do something like :
>>> article = Article.objects.get(pk=1) >>> form = ArticleForm(instance=article) the generated form doesn`t have a hidden field for the primary key. Why? What`s the best way to add it? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

