X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/0763589c29458e7c4e7b7bfb5424b724a112931d..9bbc541d5a4a8720fbfa24c081da574cb1822df7:/admin/base.py?ds=inline diff --git a/admin/base.py b/admin/base.py index 46c7c22..d9249e5 100644 --- a/admin/base.py +++ b/admin/base.py @@ -1,6 +1,7 @@ from django.contrib import admin from django.contrib.contenttypes import generic -from philo.models import Tag, Attribute, Relationship +from philo.models import Tag, Attribute +from philo.forms import AttributeForm COLLAPSE_CLASSES = ('collapse', 'collapse-closed', 'closed',) @@ -11,23 +12,15 @@ class AttributeInline(generic.GenericTabularInline): ct_fk_field = 'entity_object_id' model = Attribute 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' + template = 'admin/philo/edit_inline/tabular_attribute.html' allow_add = True classes = COLLAPSE_CLASSES + form = AttributeForm + exclude = ['value_object_id'] class EntityAdmin(admin.ModelAdmin): - inlines = [AttributeInline, RelationshipInline] + inlines = [AttributeInline] save_on_top = True