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):
png_img = self._html_tag(
"img",
src="/fetch/thumb/{}".format(obj.id),
width=275,
alt="thumbnail",
title=obj.file_name)
"img",
src="/fetch/thumb/{}".format(obj.id),
width=275,
alt="thumbnail",
title=obj.file_name
)
return self._html_tag("a", png_img, href=obj.download_url)
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 = {
'ADMIN_NAME': 'Paperless',
'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',
'MENU': (
'sites',
{ 'app': 'documents',
'label': 'Paperless',
'icon': 'icon-file',
'models': ('Document', 'Tag', 'Correspondent', 'log')
{
'app': 'documents',
'label': 'Paperless',
'icon': 'icon-file',
'models': ('Document', 'Tag', 'Correspondent', 'log')
},
)
}