med/media/admin.py

68 lines
2.3 KiB
Python
Raw Normal View History

2019-08-02 12:57:53 +00:00
# -*- mode: python; coding: utf-8 -*-
# Copyright (C) 2017-2019 by BDE ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
2017-06-30 01:25:07 +00:00
2019-08-10 13:53:23 +00:00
from django.urls import reverse
from django.utils.html import format_html
from django.utils.translation import ugettext_lazy as _
2019-08-02 12:57:53 +00:00
from reversion.admin import VersionAdmin
2017-06-30 01:25:07 +00:00
2019-08-10 06:04:46 +00:00
from med.admin import admin_site
2019-08-09 21:22:20 +00:00
from .models import Auteur, Emprunt, Jeu, Media
2017-06-30 01:25:07 +00:00
2019-08-02 12:57:53 +00:00
2017-06-30 01:25:07 +00:00
class AuteurAdmin(VersionAdmin):
list_display = ('nom',)
2019-08-10 08:44:17 +00:00
search_fields = ('nom',)
2017-06-30 01:25:07 +00:00
2019-08-02 12:57:53 +00:00
2017-06-30 01:25:07 +00:00
class MediaAdmin(VersionAdmin):
2019-08-11 07:22:22 +00:00
list_display = ('title', 'authors_list', 'side_title', 'isbn')
search_fields = ('title', 'authors__nom', 'side_title', 'subtitle', 'isbn')
autocomplete_fields = ('authors',)
date_hierarchy = 'publish_date'
2019-08-08 19:08:24 +00:00
2019-08-11 07:22:22 +00:00
def authors_list(self, obj):
return ", ".join([a.nom for a in obj.authors.all()])
authors_list.short_description = _('authors')
2019-08-02 12:57:53 +00:00
2017-06-30 01:25:07 +00:00
class EmpruntAdmin(VersionAdmin):
2019-08-08 19:08:24 +00:00
list_display = ('media', 'user', 'date_emprunt', 'date_rendu',
2019-08-10 13:53:23 +00:00
'permanencier_emprunt', 'permanencier_rendu_custom')
2019-08-11 07:22:22 +00:00
search_fields = ('media__title', 'media__side_title', 'user__username',
2019-08-10 09:49:22 +00:00
'date_emprunt', 'date_rendu')
2019-08-10 08:44:17 +00:00
date_hierarchy = 'date_emprunt'
2019-08-10 09:42:27 +00:00
autocomplete_fields = ('media', 'user', 'permanencier_emprunt',
'permanencier_rendu')
2019-08-02 12:57:53 +00:00
2019-08-10 13:53:23 +00:00
def permanencier_rendu_custom(self, obj):
"""
Show a button if item has not been returned yet
"""
if obj.permanencier_rendu:
return obj.permanencier_rendu
else:
return format_html(
'<a class="button" href="{}">{}</a>',
reverse('media:retour-emprunt', args=[obj.pk]),
_('Turn back')
)
permanencier_rendu_custom.short_description = _('permanencier rendu')
permanencier_rendu_custom.allow_tags = True
2017-06-30 01:25:07 +00:00
2017-07-03 16:33:24 +00:00
class JeuAdmin(VersionAdmin):
2019-08-08 19:08:24 +00:00
list_display = ('nom', 'proprietaire', 'duree', 'nombre_joueurs_min',
'nombre_joueurs_max', 'comment')
2019-08-10 09:49:22 +00:00
search_fields = ('nom', 'proprietaire__username', 'duree', 'comment')
2019-08-10 09:42:27 +00:00
autocomplete_fields = ('proprietaire',)
2019-08-02 12:57:53 +00:00
2017-06-30 01:25:07 +00:00
2019-08-10 06:04:46 +00:00
admin_site.register(Auteur, AuteurAdmin)
admin_site.register(Media, MediaAdmin)
admin_site.register(Emprunt, EmpruntAdmin)
admin_site.register(Jeu, JeuAdmin)