Hello, I am currently using Django to keep track of "Timecards" submitted towards work on different "Projects". What I would like to do, is to track when "Modifications" are made on projects (via the project admin page). (I'm quoting words that are represented literally in the data model.)
For example: Someone logged in might want to change the "status" of a particular project from 'assay development' to 'completed'. What I would like to do, is create a new "ProjectModification" every time something like this happens. class ProjectModification(models.Model): project = models.ForeignKey(Project) user = models.ForeignKey(User) date = models.DateField() change_field = models.CharField(max_length=200) change_from = models.CharField(max_length=200) change_to = models.CharField(max_length=200) Does anyone have an idea of how I could accomplish this? I am already using a specialized version of the 'change_form.html' template for Projects, so modifications could be made here without affecting other admin change_forms. Any help would be greatly appreciated. -Adam --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---