Merge branch 'master' of git://github.com/melinath/philo
[philo.git] / admin / base.py
index 0383ad4..457db17 100644 (file)
@@ -1,6 +1,6 @@
 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',)
@@ -26,4 +26,10 @@ class RelationshipInline(generic.GenericTabularInline):
 
 class EntityAdmin(admin.ModelAdmin):
        inlines = [AttributeInline, RelationshipInline]
-       save_on_top = True
\ No newline at end of file
+       save_on_top = True
+
+
+class TagAdmin(admin.ModelAdmin):
+       prepopulated_fields = {"slug": ("name",)}
+
+admin.site.register(Tag, TagAdmin)
\ No newline at end of file