Django admin - Insert into another table

2013-03-05 Thread Bora Aymete
I want to insert into another table when saving a record on Django admin panel. For example I have a model named device and I want to create a device and keep it in a table, but whenever I make a change to the device, I want to make a record history of the changes. Is it possible to do so? --

Re: Django admin - Insert into another table

2013-03-05 Thread Bora Aymete
Looks promising. Thanks 5 Mart 2013 Salı 15:25:13 UTC+2 tarihinde Shawn Milochik yazdı: > > Sure. Just use the post-save signal: > > https://docs.djangoproject.com/en/1.5/ref/signals/#post-save > -- You received this message because you are subscribed to the Google Groups "Django users" group

Debugging admin site

2013-08-28 Thread Bora Aymete
I'm using the admin site for editing a model. One of the fields in the model is readonly when editing. But when try to save the model while editing django gives the error "Please correct error below" and does not give a clue about where the error happens. I know the cause is the readonly field