mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Code cleanup
This commit is contained in:
parent
d825667c9b
commit
33abec0663
@ -61,12 +61,12 @@ class FinancialYearFilter(admin.SimpleListFilter):
|
|||||||
|
|
||||||
# To keep it simple we use the same string for both
|
# To keep it simple we use the same string for both
|
||||||
# query parameter and the display.
|
# query parameter and the display.
|
||||||
return (query, query)
|
return query, query
|
||||||
|
|
||||||
else:
|
else:
|
||||||
query = "{0}-{0}".format(date.year)
|
query = "{0}-{0}".format(date.year)
|
||||||
display = "{}".format(date.year)
|
display = "{}".format(date.year)
|
||||||
return (query, display)
|
return query, display
|
||||||
|
|
||||||
def lookups(self, request, model_admin):
|
def lookups(self, request, model_admin):
|
||||||
if not settings.FY_START or not settings.FY_END:
|
if not settings.FY_START or not settings.FY_END:
|
||||||
@ -146,8 +146,8 @@ class CorrespondentAdmin(CommonAdmin):
|
|||||||
|
|
||||||
class TagAdmin(CommonAdmin):
|
class TagAdmin(CommonAdmin):
|
||||||
|
|
||||||
list_display = ("name", "colour", "match", "matching_algorithm",
|
list_display = (
|
||||||
"document_count")
|
"name", "colour", "match", "matching_algorithm", "document_count")
|
||||||
list_filter = ("colour", "matching_algorithm")
|
list_filter = ("colour", "matching_algorithm")
|
||||||
list_editable = ("colour", "match", "matching_algorithm")
|
list_editable = ("colour", "match", "matching_algorithm")
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user