fix video
[redakcja.git] / apps / attachments / admin.py
1 # -*- coding: utf-8 -*-
2 from django.contrib import admin
3
4 from attachments.models import Attachment
5
6
7 class AttachmentAdmin(admin.ModelAdmin):
8     list_display = ('key',)
9     search_fields = ('key',)
10
11 admin.site.register(Attachment, AttachmentAdmin)