2017-12-28 10:39:02 +00:00
|
|
|
# Episodes.Community - Community-Driven TV Show Episode Link Sharing Site
|
|
|
|
# Copyright (C) 2017 Evert "Diamond" Prants <evert@lunasqu.ee>, Taizo "Tsa6" Simpson <taizo@tsa6.net>
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
2017-08-25 18:03:37 +00:00
|
|
|
from django.contrib import admin
|
2017-11-14 12:56:44 +00:00
|
|
|
from django.contrib.auth.admin import UserAdmin
|
2017-08-25 23:39:54 +00:00
|
|
|
from .models import *
|
2017-11-14 12:56:44 +00:00
|
|
|
from .forms import SpecialUserChangeForm
|
|
|
|
|
2017-12-11 17:23:19 +00:00
|
|
|
from guardian.admin import GuardedModelAdmin
|
|
|
|
|
2017-11-14 12:56:44 +00:00
|
|
|
class SpecialUserAdmin(UserAdmin):
|
|
|
|
form = SpecialUserChangeForm
|
|
|
|
|
|
|
|
fieldsets = UserAdmin.fieldsets + (
|
|
|
|
(None, {'fields': ('display_name',)}),
|
|
|
|
)
|
2017-08-25 18:03:37 +00:00
|
|
|
|
2017-12-11 17:23:19 +00:00
|
|
|
class ShowAdmin(GuardedModelAdmin):
|
|
|
|
pass
|
|
|
|
|
2017-08-25 18:03:37 +00:00
|
|
|
# Register your models here.
|
2017-12-11 17:23:19 +00:00
|
|
|
admin.site.register(Show, ShowAdmin)
|
2017-11-14 12:56:44 +00:00
|
|
|
admin.site.register(User, SpecialUserAdmin)
|
2017-08-25 23:39:54 +00:00
|
|
|
admin.site.register(Ban)
|
|
|
|
admin.site.register(Report)
|
|
|
|
admin.site.register(ShowSubmission)
|
2017-09-24 20:14:08 +00:00
|
|
|
admin.site.register(Season)
|
|
|
|
admin.site.register(Episode)
|
|
|
|
admin.site.register(Submission)
|
|
|
|
admin.site.register(SubmissionVote)
|
|
|
|
admin.site.register(Favorite)
|
|
|
|
admin.site.register(Watch)
|
|
|
|
admin.site.register(DiscussionBoard)
|
|
|
|
admin.site.register(DiscussionReply)
|
|
|
|
admin.site.register(DiscussionVote)
|