Re: Generic relation issues, can't delete objects

2008-04-25 Thread Josh
That was it! Thanks. :) On Apr 3, 8:09 am, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > On Wed, Apr 2, 2008 at 6:00 PM, Josh <[EMAIL PROTECTED]> wrote: > > > Sorry, here's the full traceback: > > > Environment: > > > Request Method: GET > > Request URL: > >http://myproject.webfactional.com/admin/w

Re: Generic relation issues, can't delete objects

2008-04-03 Thread Karen Tracey
On Wed, Apr 2, 2008 at 6:00 PM, Josh <[EMAIL PROTECTED]> wrote: > > Sorry, here's the full traceback: > > Environment: > > Request Method: GET > Request URL: > http://myproject.webfactional.com/admin/words/word/278/delete/ > Django Version: 0.97-pre-SVN-7388 > Python Version: 2.5.1 > Installed App

Re: Generic relation issues, can't delete objects

2008-04-02 Thread Josh
Sorry, here's the full traceback: Environment: Request Method: GET Request URL: http://myproject.webfactional.com/admin/words/word/278/delete/ Django Version: 0.97-pre-SVN-7388 Python Version: 2.5.1 Installed Applications: ['django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.

Re: Generic relation issues, can't delete objects

2008-04-02 Thread Karen Tracey
On Wed, Apr 2, 2008 at 11:41 AM, Josh <[EMAIL PROTECTED]> wrote: > > I've created a sort of modified tagging system for the site I'm > working on. Because of the nature of the 'tags' I had to diverge a > little form the standard and my models look like this: > > class Word(models.Model): >

Generic relation issues, can't delete objects

2008-04-02 Thread Josh
I've created a sort of modified tagging system for the site I'm working on. Because of the nature of the 'tags' I had to diverge a little form the standard and my models look like this: class Word(models.Model): word = models.CharField(max_length=30) slug = models.SlugField(prepop