16 lines
384 B
Python
16 lines
384 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.contrib import admin
|
|
|
|
#from .models import OCRZone, OCRZoneContent
|
|
|
|
|
|
#@admin.register(OCRZone)
|
|
#class OCRZoneAdmin(admin.ModelAdmin):
|
|
# list_display = ('document_type', 'label', 'slug', 'enabled')
|
|
# list_display_links = ('label', 'slug')
|
|
# prepopulated_fields = {'slug': ('label',)}
|
|
|
|
|
|
#admin.site.register(OCRZoneContent)
|