mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Added some better admin for tags
This commit is contained in:
parent
d6f4ef27aa
commit
10e4f0f5f3
@ -31,6 +31,13 @@ class MonthListFilter(admin.SimpleListFilter):
|
|||||||
return queryset.filter(created__year=year, created__month=month)
|
return queryset.filter(created__year=year, created__month=month)
|
||||||
|
|
||||||
|
|
||||||
|
class TagAdmin(admin.ModelAdmin):
|
||||||
|
|
||||||
|
list_display = ("name", "colour", "match", "matching_algorithm")
|
||||||
|
list_filter = ("colour", "matching_algorithm")
|
||||||
|
list_editable = ("colour", "match", "matching_algorithm")
|
||||||
|
|
||||||
|
|
||||||
class DocumentAdmin(admin.ModelAdmin):
|
class DocumentAdmin(admin.ModelAdmin):
|
||||||
|
|
||||||
search_fields = ("sender__name", "title", "content",)
|
search_fields = ("sender__name", "title", "content",)
|
||||||
@ -64,7 +71,7 @@ class DocumentAdmin(admin.ModelAdmin):
|
|||||||
tags_.allow_tags = True
|
tags_.allow_tags = True
|
||||||
|
|
||||||
admin.site.register(Sender)
|
admin.site.register(Sender)
|
||||||
admin.site.register(Tag)
|
admin.site.register(Tag, TagAdmin)
|
||||||
admin.site.register(Document, DocumentAdmin)
|
admin.site.register(Document, DocumentAdmin)
|
||||||
|
|
||||||
# Unless we implement multi-user, these default registrations don't make sense.
|
# Unless we implement multi-user, these default registrations don't make sense.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user