Prettied up the interface a little

This commit is contained in:
Daniel Quinn 2016-02-06 17:27:17 +00:00
parent ce69e37256
commit febb45af81
9 changed files with 32 additions and 11 deletions

View File

@ -40,26 +40,21 @@ class TagAdmin(admin.ModelAdmin):
class DocumentAdmin(admin.ModelAdmin):
class Media:
css = {
"all": ("paperless.css",)
}
search_fields = ("sender__name", "title", "content")
list_display = ("created", "sender", "title", "tags_", "document")
list_filter = ("tags", "sender", MonthListFilter)
list_editable = ("sender", "title")
list_per_page = 25
def document(self, obj):
return '<a href="{}">' \
'<img src="{}" width="22" height="22" alt="{} icon">' \
'</a>'.format(
reverse("fetch", kwargs={"pk": obj.pk}),
static("documents/img/application-pdf.png"),
obj.file_type
)
document.allow_tags = True
def tags_(self, obj):
r = ""
for tag in obj.tags.all():
r += '<a style="padding: 0 0.5em; background-color: {}; color: #ffffff; border-radius: 0.2em; margin: 1px; display: inline-block;" href="{}">{}</a>'.format(
r += '<a class="tag" style="background-color: {};" href="{}">{}</a>'.format(
tag.get_colour_display(),
"{}?tags__id__exact={}".format(
reverse("admin:documents_document_changelist"),
@ -70,6 +65,16 @@ class DocumentAdmin(admin.ModelAdmin):
return r
tags_.allow_tags = True
def document(self, obj):
return '<a href="{}">' \
'<img src="{}" width="22" height="22" alt="{} icon">' \
'</a>'.format(
reverse("fetch", kwargs={"pk": obj.pk}),
static("documents/img/{}.png".format(obj.file_type)),
obj.file_type
)
document.allow_tags = True
admin.site.register(Sender)
admin.site.register(Tag, TagAdmin)
admin.site.register(Document, DocumentAdmin)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1 @@
image.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -0,0 +1 @@
image.png

View File

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -0,0 +1 @@
image.png

View File

@ -0,0 +1 @@
image.png

View File

@ -0,0 +1,12 @@
th.column-document,
td.field-document {
text-align: center;
}
td a.tag {
padding: 0 0.5em;
color: #ffffff;
border-radius: 0.2em;
margin: 1px;
display: inline-block;
}