mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-08-14 00:26:21 +00:00
It works!
This commit is contained in:
24
src/documents/admin.py
Normal file
24
src/documents/admin.py
Normal file
@@ -0,0 +1,24 @@
|
||||
from django.conf import settings
|
||||
from django.contrib import admin
|
||||
|
||||
from .models import Document
|
||||
|
||||
|
||||
class DocumentAdmin(admin.ModelAdmin):
|
||||
|
||||
search_fields = ("sender", "title", "content",)
|
||||
list_display = ("created", "sender", "title", "thumbnail", "pdf")
|
||||
list_filter = ("created", "sender")
|
||||
save_on_top = True
|
||||
|
||||
def thumbnail(self, obj):
|
||||
return '<img src="{}documents/img/{:07}.jpg" width="100" />'.format(
|
||||
settings.MEDIA_URL, obj.pk)
|
||||
thumbnail.allow_tags = True
|
||||
|
||||
def pdf(self, obj):
|
||||
return '<a href="{}documents/pdf/{:07}.pdf">Download</a>'.format(
|
||||
settings.MEDIA_URL, obj.pk)
|
||||
pdf.allow_tags = True
|
||||
|
||||
admin.site.register(Document, DocumentAdmin)
|
Reference in New Issue
Block a user