X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/6656eefd4a3bbea3f77d82849f8b512b79cb324c..01a66d144c3ac6539991c5b9f00e1bd5bab132ee:/admin/base.py diff --git a/admin/base.py b/admin/base.py index 0383ad4..f4a5f2f 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 Attribute, Relationship +from philo.models import Tag, Attribute +from philo.forms import AttributeForm, AttributeInlineFormSet COLLAPSE_CLASSES = ('collapse', 'collapse-closed', 'closed',) @@ -11,19 +12,22 @@ class AttributeInline(generic.GenericTabularInline): ct_fk_field = 'entity_object_id' model = Attribute 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 + formset = AttributeInlineFormSet + exclude = ['value_object_id'] -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 EntityAdmin(admin.ModelAdmin): + inlines = [AttributeInline] + save_on_top = True -class EntityAdmin(admin.ModelAdmin): - inlines = [AttributeInline, RelationshipInline] - save_on_top = True \ No newline at end of file +class TagAdmin(admin.ModelAdmin): + list_display = ('name', 'slug') + prepopulated_fields = {"slug": ("name",)} + search_fields = ["name"] + +admin.site.register(Tag, TagAdmin) \ No newline at end of file