X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/8315186b58e7fb5ff12472eff11fb6e0a789a51e..74ceac458ad030558f2e564ba34191115d0aadc5:/admin/base.py diff --git a/admin/base.py b/admin/base.py index 457db17..3b2deba 100644 --- a/admin/base.py +++ b/admin/base.py @@ -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',) @@ -13,23 +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] + 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