Housekeeping.
[wolnelektury.git] / src / chunks / admin.py
1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
3 #
4 from django.contrib import admin
5
6 from chunks.models import Chunk, Attachment
7
8
9 class ChunkAdmin(admin.ModelAdmin):
10     list_display = ('key', 'description',)
11     search_fields = ('key', 'content',)
12
13 admin.site.register(Chunk, ChunkAdmin)
14
15
16 class AttachmentAdmin(admin.ModelAdmin):
17     list_display = ('key',)
18     search_fields = ('key',)
19
20 admin.site.register(Attachment, AttachmentAdmin)