Hello I wrote a tagging app and it is not validating when I attempt to
install it into my database. The error is related to the TAG_FILTER
tuple located in my models file. Its not validating b/c the table does
not exist. Does anyone know of a better way of doing what I am trying
to accomplish.

Code:

from django.db import models
from django.contrib.contenttypes.models import ContentType

try:
    TAG_FILTER = (
        (content.id,'%s | %s' % (content.app_label,content.name)) for
content in ContentType.objects.all()
    )
except:
    TAG_FILTER = ()

class Tag(models.Model):
    """Tagging model"""
    name = models.CharField(max_length=25,)
    slug = models.SlugField(choices=TAG_FILTER)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to