forked from jhannah/sandbox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadmin.py
52 lines (40 loc) · 1.58 KB
/
admin.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from codecocktail.blog.models import Content, Category, Rating, UserProfile
from django.contrib import admin
from django.contrib.auth.admin import UserAdmin
from django.contrib.auth.models import User
# Modifications of the Content Admin interface for wysiwyg
class WysiwygContentOptions(admin.ModelAdmin):
# Definition of the Fieldsets in the Admin-Change-Form
fieldsets = [
('Article Content', {'fields': ['headline','text']}),
('Article Type', {'fields': ['type']}),
('Date information', {'fields': ['pubDate'], 'classes': ['collapse']}),
('Glossary', {'fields': ['categories','tags','authors']}),
('External Sources', {'fields': ['source']}),
]
# Defining the view of the Content change list
list_display = ('headline','pubDate','type')
list_filter = ['pubDate','type']
search_fields = ['headline','text']
date_hierarchy = 'pubDate'
class Media:
js = ('js/tinymce/tiny_mce.js',
'js/tinymce/textareas.js',)
admin.site.register(Content, WysiwygContentOptions)
class CategoryAdmin(admin.ModelAdmin):
fieldsets = [
('Category Name', {'fields': ['name']}),
]
# Defining the view of the Category change list
list_display = ('name',)
search_fields = ['name']
admin.site.register(Category, CategoryAdmin)
admin.site.register(Rating)
class UserProfileInline(admin.StackedInline):
model = UserProfile
fk_name = 'user'
max_num = 1
class MyUserAdmin(UserAdmin):
inlines = [UserProfileInline, ]
admin.site.unregister(User)
admin.site.register(User, MyUserAdmin)