Re: Using the Admin GUI for a linked list

2007-03-03 Thread rh
Well, since no one replied I figured it's probably easier to implement from scratch rather than adjusting the Admin GUI. Seems like the Admin GUI is only intended for a basic model layout. If anyone is interested, here's a linked-list in Django: MODEL: class Case(models.Model): prev = models.

Using the Admin GUI for a linked list

2007-03-02 Thread rh
Hi, I've a model which I want to implement as a linked-list. The model has a pointer to itself: prev = models.ForeignKey('self', blank=True, null=True) Now, my question is about the GUI. I want to use the Admin GUI with a small modification: when a user edits an existing instance of the model an