mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-12 17:47:08 +01:00
white spacing and remove var's prefix
This commit is contained in:
parent
73af9552ec
commit
7a627e4ad8
1 changed files with 3 additions and 3 deletions
|
|
@ -71,12 +71,12 @@ class DocumentAdmin(CommonAdmin):
|
|||
|
||||
def thumbnail(self, obj):
|
||||
if settings.FORCE_SCRIPT_NAME:
|
||||
_src="{}/fetch/thumb/{}".format(settings.FORCE_SCRIPT_NAME,obj.id)
|
||||
src_link = "{}/fetch/thumb/{}".format(settings.FORCE_SCRIPT_NAME, obj.id)
|
||||
else:
|
||||
_src="/fetch/thumb/{}".format(obj.id)
|
||||
src_link = "/fetch/thumb/{}".format(obj.id)
|
||||
png_img = self._html_tag(
|
||||
"img",
|
||||
src=_src,
|
||||
src=src_link,
|
||||
width=180,
|
||||
alt="Thumbnail of {}".format(obj.file_name),
|
||||
title=obj.file_name
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue