Re: Adding a custom field to an admin model (table)

2009-07-11 Thread Tavish
the LogEntry in log_entries #call save() class LogEntry(models.Model): comment = models.TextField() pub_date = models.DateField() Something like that might work, though it's a bit of a hack. On Jul 11, 1:52 pm, Tavish wrote: > I'm fairly new to django and

Re: Adding a custom field to an admin model (table)

2009-07-11 Thread Tavish
I'm fairly new to django and programming in general, but I'll give it a shot: Could you define a separate model for LogEntry's? If you had a separate model for the log entries, you could easily define a many-to- many field to link them. This isn't semantically beautiful, but it might work. Here'