pep8 and other code-style changes
[wolnelektury.git] / src / chunks / admin.py
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.
4 #
5 from django.contrib import admin
6
7 from chunks.models import Chunk, Attachment
8
9
10 class ChunkAdmin(admin.ModelAdmin):
11     list_display = ('key', 'description',)
12     search_fields = ('key', 'content',)
13
14 admin.site.register(Chunk, ChunkAdmin)
15
16
17 class AttachmentAdmin(admin.ModelAdmin):
18     list_display = ('key',)
19     search_fields = ('key',)
20
21 admin.site.register(Attachment, AttachmentAdmin)