Rob Slotboom wrote:
> I installed Luke Plant's Tagging App and started reading the README
> file and the comments provided in the source. Compared to the marvelous
> Django Book and -tutorial this reading isn't very funny :-)
>
> Has someone a simple example for how to include a tag in another model,
> say Poll or Article?
> And now I'm on it: can related tags for a given model be used in the
> admin app?

That's easy.

My Tag model:
class Tag(models.Model):
    name = models.CharField(maxlength=32)

(would be good to make "name" unique)

and then for an entry just do:
from mysite.tags.models import Tag

class Entry(models.Model):
    title = models.CharField(maxlength=200)
    body = models.TextField(blank=True)
    tags = models.ManyToManyField(Tag, blank=True)

And all the other stuff around :)

No need for a big tag app

There are also some counters to see how many things use this tags etc...


--~--~---------~--~----~------------~-------~--~----~
 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