Fixing some style bits for my own OCD

This commit is contained in:
Daniel Quinn 2017-01-08 19:05:31 +00:00
parent dc222cefd4
commit 92e178cc59
2 changed files with 12 additions and 11 deletions

View File

@ -62,11 +62,12 @@ class DocumentAdmin(admin.ModelAdmin):
def thumbnail(self, obj): def thumbnail(self, obj):
png_img = self._html_tag( png_img = self._html_tag(
"img", "img",
src="/fetch/thumb/{}".format(obj.id), src="/fetch/thumb/{}".format(obj.id),
width=275, width=275,
alt="thumbnail", alt="thumbnail",
title=obj.file_name) title=obj.file_name
)
return self._html_tag("a", png_img, href=obj.download_url) return self._html_tag("a", png_img, href=obj.download_url)
thumbnail.allow_tags = True thumbnail.allow_tags = True

View File

@ -61,18 +61,18 @@ INSTALLED_APPS = [
] ]
_list_per_page = int(os.getenv("PAPERLESS_LIST_PER_PAGE", 25))
SUIT_CONFIG = { SUIT_CONFIG = {
'ADMIN_NAME': 'Paperless', 'ADMIN_NAME': 'Paperless',
'SEARCH_URL': '', 'SEARCH_URL': '',
'LIST_PER_PAGE': _list_per_page, 'LIST_PER_PAGE': int(os.getenv("PAPERLESS_LIST_PER_PAGE", 25)),
'HEADER_DATE_FORMAT': 'D m-d-Y', 'HEADER_DATE_FORMAT': 'D m-d-Y',
'MENU': ( 'MENU': (
'sites', 'sites',
{ 'app': 'documents', {
'label': 'Paperless', 'app': 'documents',
'icon': 'icon-file', 'label': 'Paperless',
'models': ('Document', 'Tag', 'Correspondent', 'log') 'icon': 'icon-file',
'models': ('Document', 'Tag', 'Correspondent', 'log')
}, },
) )
} }