Initial flexible attributes commit. Removed Relationship model in favor of a flexible...
[philo.git] / admin / base.py
index 46c7c22..3b2deba 100644 (file)
@@ -1,6 +1,6 @@
 from django.contrib import admin
 from django.contrib.contenttypes import generic
-from philo.models import Tag, Attribute, Relationship
+from philo.models import Tag, Attribute
 
 
 COLLAPSE_CLASSES = ('collapse', 'collapse-closed', 'closed',)
@@ -16,18 +16,18 @@ class AttributeInline(generic.GenericTabularInline):
        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
-       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
+#      classes = COLLAPSE_CLASSES
 
 
 class EntityAdmin(admin.ModelAdmin):
-       inlines = [AttributeInline, RelationshipInline]
+       inlines = [AttributeInline] #, RelationshipInline]
        save_on_top = True