Initial flexible attributes commit. Removed Relationship model in favor of a flexible...
[philo.git] / admin / base.py
index b6f47a0..3b2deba 100644 (file)
@@ -1,16 +1,6 @@
 from django.contrib import admin
-#from django.contrib.contenttypes.models import ContentType
 from django.contrib.contenttypes import generic
-#from django import forms
-#from django.conf import settings
-#from django.utils.translation import ugettext as _
-#from django.utils.safestring import mark_safe
-#from django.utils.html import escape
-#from django.utils.text import truncate_words
-from philo.models import *
-#from philo.admin import widgets
-#from django.core.exceptions import ValidationError, ObjectDoesNotExist
-#from validators import TreeParentValidator, TreePositionValidator
+from philo.models import Tag, Attribute
 
 
 COLLAPSE_CLASSES = ('collapse', 'collapse-closed', 'closed',)
@@ -23,17 +13,26 @@ class AttributeInline(generic.GenericTabularInline):
        extra = 1
        template = 'admin/philo/edit_inline/tabular_collapse.html'
        allow_add = True
+       classes = COLLAPSE_CLASSES
 
 
-class RelationshipInline(generic.GenericTabularInline):
-       ct_field = 'entity_content_type'
-       ct_fk_field = 'entity_object_id'
-       model = Relationship
-       extra = 1
-       template = 'admin/philo/edit_inline/tabular_collapse.html'
-       allow_add = True
+#class RelationshipInline(generic.GenericTabularInline):
+#      ct_field = 'entity_content_type'
+#      ct_fk_field = 'entity_object_id'
+#      model = Relationship
+#      extra = 1
+#      template = 'admin/philo/edit_inline/tabular_collapse.html'
+#      allow_add = True
+#      classes = COLLAPSE_CLASSES
 
 
 class EntityAdmin(admin.ModelAdmin):
-       inlines = [AttributeInline, RelationshipInline]
-       save_on_top = True
\ No newline at end of file
+       inlines = [AttributeInline] #, RelationshipInline]
+       save_on_top = True
+
+
+class TagAdmin(admin.ModelAdmin):
+       list_display = ('name', 'slug')
+       prepopulated_fields = {"slug": ("name",)}
+
+admin.site.register(Tag, TagAdmin)
\ No newline at end of file