from django.contrib import admin
from django.contrib.contenttypes import generic
-from philo.models import Attribute, Relationship
+from philo.models import Tag, Attribute, Relationship
COLLAPSE_CLASSES = ('collapse', 'collapse-closed', 'closed',)
class EntityAdmin(admin.ModelAdmin):
inlines = [AttributeInline, RelationshipInline]
- save_on_top = True
\ No newline at end of file
+ save_on_top = True
+
+
+admin.site.register(Tag)
\ No newline at end of file