diff options
author | luxagraf <sng@luxagraf.net> | 2014-05-08 19:47:44 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2014-05-08 19:47:44 -0400 |
commit | c54417f2eb53c2bbeff7e94acef688c97cd949d5 (patch) | |
tree | efb4b6c5305d8c7a97e7787b500b90a62e01d86c /app/lib/taggit/admin.py | |
parent | 58e402a077c710c04934e3a7ddc25883427d1f64 (diff) |
moved taggit to virtualenv and cleaned up lib app
Diffstat (limited to 'app/lib/taggit/admin.py')
-rw-r--r-- | app/lib/taggit/admin.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/app/lib/taggit/admin.py b/app/lib/taggit/admin.py deleted file mode 100644 index 5155b6f..0000000 --- a/app/lib/taggit/admin.py +++ /dev/null @@ -1,16 +0,0 @@ -from django.contrib import admin - -from taggit.models import Tag, TaggedItem - - -class TaggedItemInline(admin.StackedInline): - model = TaggedItem - -class TagAdmin(admin.ModelAdmin): - list_display = ["name"] - inlines = [ - TaggedItemInline - ] - - -admin.site.register(Tag, TagAdmin) |