fargo/fargo/fargo/admin.py

77 lines
2.7 KiB
Python
Raw Normal View History

2019-05-15 18:23:48 +02:00
# fargo - document box
# Copyright (C) 2016-2019 Entr'ouvert
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2015-02-11 10:48:58 +01:00
from django.contrib import admin
from django.contrib.auth import get_user_model
from django.utils.html import format_html
from django.utils.translation import ugettext_lazy as _
2015-02-11 10:48:58 +01:00
2015-03-06 22:47:25 +01:00
from . import models
class UserDocumentAdmin(admin.ModelAdmin):
list_display = ['user', 'filename', 'thumbnail', 'created', 'origin']
fields = ['id', 'user', 'filename', 'thumbnail', 'created', 'origin']
readonly_fields = ['created', 'thumbnail']
search_fields = ['user__first_name', 'user__last_name', 'user__email', 'filename',
'origin__label', 'document__content_hash']
def thumbnail(self, instance):
return instance.document.thumbnail_img_tag
thumbnail.short_description = _('thumbnail')
2015-03-06 22:47:25 +01:00
class DocumentAdmin(admin.ModelAdmin):
fields = ['content_hash', 'thumbnail', 'users']
list_display = ['content_hash', 'thumbnail', 'users']
readonly_fields = ['thumbnail', 'users']
search_fields = ['content_hash', 'content']
def users(self, instance):
User = get_user_model()
qs = User.objects.filter(user_documents__document=instance)
return u', '.join(unicode(u) for u in qs)
def thumbnail(self, instance):
return instance.thumbnail_img_tag
thumbnail.short_description = _('thumbnail')
class ValidationAdmin(admin.ModelAdmin):
fields = ['user',
'content_hash',
'document_type',
'start',
'end',
'data',
'creator',
'created',
'origin']
readonly_fields = ['created']
list_display = ['user', 'display', 'document_type', 'start', 'end', 'creator', 'created',
'origin']
2015-03-06 22:47:25 +01:00
2016-03-28 02:20:28 +02:00
class OriginAdmin(admin.ModelAdmin):
fields = ['label', 'slug']
list_display = ['label', 'slug']
2018-03-22 21:14:06 +01:00
admin.site.register(models.UserDocument, UserDocumentAdmin)
2015-03-06 22:47:25 +01:00
admin.site.register(models.Document, DocumentAdmin)
admin.site.register(models.Validation, ValidationAdmin)
2016-03-28 02:20:28 +02:00
admin.site.register(models.Origin, OriginAdmin)