<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
# Copyright Â© Fundacja Nowoczesna Polska. See NOTICE for more information.
#
from django.contrib import admin

from suggest.models import Suggestion, PublishingSuggestion


class SuggestionAdmin(admin.ModelAdmin):
    list_display = ('created_at', 'contact', 'user', 'description')

admin.site.register(Suggestion, SuggestionAdmin)


class PublishingSuggestionAdmin(admin.ModelAdmin):
    list_display = ('created_at', 'contact', 'user', 'books', 'audiobooks')

admin.site.register(PublishingSuggestion, PublishingSuggestionAdmin)
</pre></body></html>