Add the file metadata app. This app uses binary wrappers called drivers to extract properties from the file of documents. The default driver uses the exiftool to extract the EXIF record from JPEG images. The exiftool can also extra some properties from other files like PDFs, office files and sound file. Signed-off-by: Roberto Rosario <Roberto.Rosario@mayan-edms.com>
14 lines
313 B
Python
14 lines
313 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.contrib import admin
|
|
|
|
from .models import StoredDriver
|
|
|
|
|
|
@admin.register(StoredDriver)
|
|
class StoredDriverAdmin(admin.ModelAdmin):
|
|
list_display = ('internal_name', 'label', 'driver_path')
|
|
|
|
def label(self, instance):
|
|
return instance.driver_label
|