Skip to content
This repository has been archived by the owner on Apr 8, 2022. It is now read-only.

avelino/django-tags

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-tags

Build Status - Travis CI

django-tags a simpler approach to tagging with Django. Add "tags" to your INSTALLED_APPS then just add a TaggableManager to your model and go:

from django.db import models

from tags.fields import TagField

class Food(models.Model):
    # ... fields here

    tags = TagField('Tags')

Tags will show up for you automatically in forms and the admin.

django-tags requires Django 1.3 or greater.

About

Simple tag field for django

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages