1 # -*- coding: utf-8 -*-
2 from django.contrib import admin
4 from attachments.models import Attachment
7 class AttachmentAdmin(admin.ModelAdmin):
8 list_display = ('key',)
9 search_fields = ('key',)
11 admin.site.register(Attachment, AttachmentAdmin)