you can simply make a db connectioin and insert the new data in a 
different table says which mantained the history.And if you want to the 
value in after some lag then used a cron simple.

Have u ever try this check out :

in forms.py

just write in ur modelForm

test(somename) = CharField(max_length=100)


and then in ur admin

fields = ('test')


You can see a new column in ur page but that is not present in table .So 
you can ask user to enter a new value.This cloumn will work like normal 
column but with no obj value.TO fetch value use cleaned_data


Ali Rıza KELEŞ wrote:
> Hi,
>
> I have a model which keeps texts, dates, author, etc.. something like a 
> clasical content model.
>
> I want to allow admins to save modified versions of these contents. If 
> possible in another db table like this:
>
> ...
> same table fields with referer table which keeps modified contents by 
> adminusers
> ...
> referer content id
> who modified
> when modified
> note for page editor
>
> When a user try to edit a content from admin interface, there would be a 
> save button, save as modified version, if it is possible and simple. I 
> don't know how can i do this?
>
> Also whatelse do you offer?
>
> Thank you.
>
>
> >
>   


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to django-developers@googlegroups.com
To unsubscribe from this group, send email to 
django-developers+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to