git.ithinksw.org
/
philo.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Adding __unicode__ to BlogViews.
[philo.git]
/
admin
/
base.py
diff --git
a/admin/base.py
b/admin/base.py
index
0383ad4
..
bdf9f38
100644
(file)
--- a/
admin/base.py
+++ b/
admin/base.py
@@
-1,6
+1,6
@@
from django.contrib import admin
from django.contrib.contenttypes import generic
from django.contrib import admin
from django.contrib.contenttypes import generic
-from philo.models import Attribute, Relationship
+from philo.models import
Tag,
Attribute, Relationship
COLLAPSE_CLASSES = ('collapse', 'collapse-closed', 'closed',)
COLLAPSE_CLASSES = ('collapse', 'collapse-closed', 'closed',)
@@
-26,4
+26,7
@@
class RelationshipInline(generic.GenericTabularInline):
class EntityAdmin(admin.ModelAdmin):
inlines = [AttributeInline, RelationshipInline]
class EntityAdmin(admin.ModelAdmin):
inlines = [AttributeInline, RelationshipInline]
- save_on_top = True
\ No newline at end of file
+ save_on_top = True
+
+
+admin.site.register(Tag)
\ No newline at end of file