1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
5 from django.contrib import admin
7 from chunks.models import Chunk, Attachment
10 class ChunkAdmin(admin.ModelAdmin):
11 list_display = ('key', 'description',)
12 search_fields = ('key', 'content',)
14 admin.site.register(Chunk, ChunkAdmin)
17 class AttachmentAdmin(admin.ModelAdmin):
18 list_display = ('key',)
19 search_fields = ('key',)
21 admin.site.register(Attachment, AttachmentAdmin)