2018-10-06 12:35:49 +02:00
|
|
|
from dal.autocomplete import ModelSelect2
|
2016-08-23 22:15:31 +02:00
|
|
|
from django import forms
|
2012-06-27 23:28:35 +02:00
|
|
|
from django.contrib import admin
|
2012-07-11 17:39:20 +02:00
|
|
|
from django.contrib.auth.admin import UserAdmin
|
2018-10-06 12:35:49 +02:00
|
|
|
from django.contrib.auth.models import Group, Permission, User
|
2012-06-27 23:28:35 +02:00
|
|
|
from django.core.urlresolvers import reverse
|
2016-08-30 22:31:55 +02:00
|
|
|
from django.db.models import Q
|
2018-10-06 12:35:49 +02:00
|
|
|
from django.utils.safestring import mark_safe
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
2012-06-27 23:28:35 +02:00
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
from gestioncof.models import (
|
|
|
|
Club,
|
|
|
|
CofProfile,
|
|
|
|
Event,
|
|
|
|
EventCommentField,
|
|
|
|
EventOption,
|
|
|
|
EventOptionChoice,
|
|
|
|
EventRegistration,
|
|
|
|
Survey,
|
|
|
|
SurveyQuestion,
|
|
|
|
SurveyQuestionAnswer,
|
|
|
|
)
|
|
|
|
from gestioncof.petits_cours_models import (
|
|
|
|
PetitCoursAbility,
|
|
|
|
PetitCoursAttribution,
|
|
|
|
PetitCoursAttributionCounter,
|
|
|
|
PetitCoursDemande,
|
|
|
|
PetitCoursSubject,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def add_link_field(target_model="", field="", link_text=str, desc_text=str):
|
2012-06-27 23:28:35 +02:00
|
|
|
def add_link(cls):
|
|
|
|
reverse_name = target_model or cls.model.__name__.lower()
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2012-06-27 23:28:35 +02:00
|
|
|
def link(self, instance):
|
|
|
|
app_name = instance._meta.app_label
|
|
|
|
reverse_path = "admin:%s_%s_change" % (app_name, reverse_name)
|
|
|
|
link_obj = getattr(instance, field, None) or instance
|
|
|
|
if not link_obj.id:
|
|
|
|
return ""
|
2016-07-09 21:19:37 +02:00
|
|
|
url = reverse(reverse_path, args=(link_obj.id,))
|
2018-10-06 12:35:49 +02:00
|
|
|
return mark_safe("<a href='%s'>%s</a>" % (url, link_text(link_obj)))
|
|
|
|
|
2012-06-27 23:28:35 +02:00
|
|
|
link.allow_tags = True
|
2018-10-06 12:35:49 +02:00
|
|
|
link.short_description = desc_text(reverse_name + " link")
|
2012-06-27 23:28:35 +02:00
|
|
|
cls.link = link
|
2018-10-06 12:35:49 +02:00
|
|
|
cls.readonly_fields = list(getattr(cls, "readonly_fields", [])) + ["link"]
|
2012-06-27 23:28:35 +02:00
|
|
|
return cls
|
2018-10-06 12:35:49 +02:00
|
|
|
|
2012-06-27 23:28:35 +02:00
|
|
|
return add_link
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2012-06-27 23:28:35 +02:00
|
|
|
class SurveyQuestionAnswerInline(admin.TabularInline):
|
|
|
|
model = SurveyQuestionAnswer
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
@add_link_field(
|
|
|
|
desc_text=lambda x: "Réponses", link_text=lambda x: "Éditer les réponses"
|
|
|
|
)
|
2012-06-27 23:28:35 +02:00
|
|
|
class SurveyQuestionInline(admin.TabularInline):
|
|
|
|
model = SurveyQuestion
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2012-06-27 23:28:35 +02:00
|
|
|
class SurveyQuestionAdmin(admin.ModelAdmin):
|
2018-10-06 12:35:49 +02:00
|
|
|
search_fields = ("survey__title", "answer")
|
|
|
|
inlines = [SurveyQuestionAnswerInline]
|
2012-06-27 23:28:35 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2012-06-27 23:28:35 +02:00
|
|
|
class SurveyAdmin(admin.ModelAdmin):
|
2018-10-06 12:35:49 +02:00
|
|
|
search_fields = ("title", "details")
|
|
|
|
inlines = [SurveyQuestionInline]
|
2012-06-27 23:28:35 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2012-07-11 17:39:20 +02:00
|
|
|
class EventOptionChoiceInline(admin.TabularInline):
|
2012-06-27 23:28:35 +02:00
|
|
|
model = EventOptionChoice
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
@add_link_field(desc_text=lambda x: "Choix", link_text=lambda x: "Éditer les choix")
|
2012-07-11 17:39:20 +02:00
|
|
|
class EventOptionInline(admin.TabularInline):
|
2012-06-27 23:28:35 +02:00
|
|
|
model = EventOption
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2014-08-19 12:54:22 +02:00
|
|
|
class EventCommentFieldInline(admin.TabularInline):
|
|
|
|
model = EventCommentField
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2012-06-27 23:28:35 +02:00
|
|
|
class EventOptionAdmin(admin.ModelAdmin):
|
2018-10-06 12:35:49 +02:00
|
|
|
search_fields = ("event__title", "name")
|
|
|
|
inlines = [EventOptionChoiceInline]
|
2012-06-27 23:28:35 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2012-06-27 23:28:35 +02:00
|
|
|
class EventAdmin(admin.ModelAdmin):
|
2018-10-06 12:35:49 +02:00
|
|
|
search_fields = ("title", "location", "description")
|
|
|
|
inlines = [EventOptionInline, EventCommentFieldInline]
|
2012-06-27 23:28:35 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2012-07-11 17:39:20 +02:00
|
|
|
class CofProfileInline(admin.StackedInline):
|
|
|
|
model = CofProfile
|
|
|
|
inline_classes = ("collapse open",)
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
class FkeyLookup(object):
|
2018-10-06 12:35:49 +02:00
|
|
|
def __init__(self, fkeydecl, short_description=None, admin_order_field=None):
|
|
|
|
self.fk, fkattrs = fkeydecl.split("__", 1)
|
|
|
|
self.fkattrs = fkattrs.split("__")
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
self.short_description = short_description or self.fkattrs[-1]
|
|
|
|
self.admin_order_field = admin_order_field or fkeydecl
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
def __get__(self, obj, klass):
|
|
|
|
if obj is None:
|
2016-07-09 22:31:56 +02:00
|
|
|
"""
|
|
|
|
hack required to make Django validate (if obj is
|
|
|
|
None, then we're a class, and classes are callable
|
|
|
|
<wink>)
|
|
|
|
"""
|
|
|
|
return self
|
2013-09-05 22:20:52 +02:00
|
|
|
item = getattr(obj, self.fk)
|
|
|
|
for attr in self.fkattrs:
|
|
|
|
item = getattr(item, attr)
|
|
|
|
return item
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2016-06-17 13:26:55 +02:00
|
|
|
def ProfileInfo(field, short_description, boolean=False):
|
2013-09-05 22:20:52 +02:00
|
|
|
def getter(self):
|
2012-07-11 17:39:20 +02:00
|
|
|
try:
|
2016-05-24 00:02:25 +02:00
|
|
|
return getattr(self.profile, field)
|
2013-09-05 22:20:52 +02:00
|
|
|
except CofProfile.DoesNotExist:
|
2012-07-11 17:39:20 +02:00
|
|
|
return ""
|
2018-10-06 12:35:49 +02:00
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
getter.short_description = short_description
|
|
|
|
getter.boolean = boolean
|
|
|
|
return getter
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
|
|
|
|
User.profile_login_clipper = FkeyLookup("profile__login_clipper", "Login clipper")
|
2013-09-05 22:20:52 +02:00
|
|
|
User.profile_phone = ProfileInfo("phone", "Téléphone")
|
|
|
|
User.profile_occupation = ProfileInfo("occupation", "Occupation")
|
|
|
|
User.profile_departement = ProfileInfo("departement", "Departement")
|
|
|
|
User.profile_mailing_cof = ProfileInfo("mailing_cof", "ML COF", True)
|
2016-09-27 16:57:39 +02:00
|
|
|
User.profile_mailing_bda = ProfileInfo("mailing_bda", "ML BdA", True)
|
2018-10-06 12:35:49 +02:00
|
|
|
User.profile_mailing_bda_revente = ProfileInfo("mailing_bda_revente", "ML BdA-R", True)
|
2013-09-05 22:20:52 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
class UserProfileAdmin(UserAdmin):
|
2012-07-11 17:39:20 +02:00
|
|
|
def is_buro(self, obj):
|
|
|
|
try:
|
2016-05-24 00:02:25 +02:00
|
|
|
return obj.profile.is_buro
|
2013-09-05 22:20:52 +02:00
|
|
|
except CofProfile.DoesNotExist:
|
2012-07-11 17:39:20 +02:00
|
|
|
return False
|
2018-10-06 12:35:49 +02:00
|
|
|
|
|
|
|
is_buro.short_description = "Membre du Buro"
|
2012-07-11 17:39:20 +02:00
|
|
|
is_buro.boolean = True
|
2016-07-09 22:31:56 +02:00
|
|
|
|
2012-07-11 17:39:20 +02:00
|
|
|
def is_cof(self, obj):
|
|
|
|
try:
|
2016-05-24 00:02:25 +02:00
|
|
|
return obj.profile.is_cof
|
2013-09-05 22:20:52 +02:00
|
|
|
except CofProfile.DoesNotExist:
|
2012-07-11 17:39:20 +02:00
|
|
|
return False
|
2018-10-06 12:35:49 +02:00
|
|
|
|
|
|
|
is_cof.short_description = "Membre du COF"
|
2012-07-11 17:39:20 +02:00
|
|
|
is_cof.boolean = True
|
2016-08-26 22:18:22 +02:00
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
list_display = UserAdmin.list_display + (
|
|
|
|
"profile_login_clipper",
|
|
|
|
"profile_phone",
|
|
|
|
"profile_occupation",
|
|
|
|
"profile_mailing_cof",
|
|
|
|
"profile_mailing_bda",
|
|
|
|
"profile_mailing_bda_revente",
|
|
|
|
"is_cof",
|
|
|
|
"is_buro",
|
2017-05-22 01:06:17 +02:00
|
|
|
)
|
2018-10-06 12:35:49 +02:00
|
|
|
list_display_links = ("username", "email", "first_name", "last_name")
|
|
|
|
list_filter = UserAdmin.list_filter + (
|
|
|
|
"profile__is_cof",
|
|
|
|
"profile__is_buro",
|
|
|
|
"profile__mailing_cof",
|
|
|
|
"profile__mailing_bda",
|
|
|
|
)
|
|
|
|
search_fields = UserAdmin.search_fields + ("profile__phone",)
|
|
|
|
inlines = [CofProfileInline]
|
2012-07-11 17:39:20 +02:00
|
|
|
|
2016-08-30 22:31:55 +02:00
|
|
|
staff_fieldsets = [
|
2018-10-06 12:35:49 +02:00
|
|
|
(None, {"fields": ["username", "password"]}),
|
|
|
|
(_("Personal info"), {"fields": ["first_name", "last_name", "email"]}),
|
2016-08-30 22:31:55 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
def get_fieldsets(self, request, user=None):
|
|
|
|
if not request.user.is_superuser:
|
|
|
|
return self.staff_fieldsets
|
2018-01-16 16:22:52 +01:00
|
|
|
return super().get_fieldsets(request, user)
|
2016-08-30 22:31:55 +02:00
|
|
|
|
2016-08-26 22:18:22 +02:00
|
|
|
def save_model(self, request, user, form, change):
|
2018-10-06 12:35:49 +02:00
|
|
|
cof_group, created = Group.objects.get_or_create(name="COF")
|
2016-08-30 22:31:55 +02:00
|
|
|
if created:
|
|
|
|
# Si le groupe COF n'était pas déjà dans la bdd
|
|
|
|
# On lui assigne les bonnes permissions
|
|
|
|
perms = Permission.objects.filter(
|
2018-10-06 12:35:49 +02:00
|
|
|
Q(content_type__app_label="gestioncof")
|
|
|
|
| Q(content_type__app_label="bda")
|
|
|
|
| (Q(content_type__app_label="auth") & Q(content_type__model="user"))
|
|
|
|
)
|
2016-08-30 22:31:55 +02:00
|
|
|
cof_group.permissions = perms
|
|
|
|
# On y associe les membres du Burô
|
|
|
|
cof_group.user_set = User.objects.filter(profile__is_buro=True)
|
|
|
|
# Sauvegarde
|
|
|
|
cof_group.save()
|
|
|
|
# le Burô est staff et appartient au groupe COF
|
2016-08-26 22:18:22 +02:00
|
|
|
if user.profile.is_buro:
|
|
|
|
user.is_staff = True
|
2016-08-30 22:31:55 +02:00
|
|
|
user.groups.add(cof_group)
|
|
|
|
else:
|
|
|
|
user.is_staff = False
|
|
|
|
user.groups.remove(cof_group)
|
2016-08-26 22:18:22 +02:00
|
|
|
user.save()
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2016-05-26 22:44:10 +02:00
|
|
|
# FIXME: This is absolutely horrible.
|
2017-05-22 00:39:36 +02:00
|
|
|
def user_str(self):
|
2013-09-05 22:20:52 +02:00
|
|
|
if self.first_name and self.last_name:
|
2017-05-23 17:50:43 +02:00
|
|
|
return "{} ({})".format(self.get_full_name(), self.username)
|
2013-09-05 22:20:52 +02:00
|
|
|
else:
|
|
|
|
return self.username
|
2018-10-06 12:35:49 +02:00
|
|
|
|
|
|
|
|
2017-05-22 00:39:36 +02:00
|
|
|
User.__str__ = user_str
|
2016-07-09 21:19:37 +02:00
|
|
|
|
|
|
|
|
2017-11-19 18:41:39 +01:00
|
|
|
class EventRegistrationAdminForm(forms.ModelForm):
|
|
|
|
class Meta:
|
2018-10-06 12:35:49 +02:00
|
|
|
widgets = {"user": ModelSelect2(url="cof-user-autocomplete")}
|
2017-11-19 18:41:39 +01:00
|
|
|
|
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
class EventRegistrationAdmin(admin.ModelAdmin):
|
2017-11-19 18:41:39 +01:00
|
|
|
form = EventRegistrationAdminForm
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
list_display = ("__str__", "event", "user", "paid")
|
|
|
|
list_filter = ("paid",)
|
|
|
|
search_fields = (
|
|
|
|
"user__username",
|
|
|
|
"user__first_name",
|
|
|
|
"user__last_name",
|
|
|
|
"user__email",
|
|
|
|
"event__title",
|
|
|
|
)
|
2013-09-05 22:20:52 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2013-10-01 15:27:19 +02:00
|
|
|
class PetitCoursAbilityAdmin(admin.ModelAdmin):
|
2018-10-06 12:35:49 +02:00
|
|
|
list_display = ("user", "matiere", "niveau", "agrege")
|
|
|
|
search_fields = (
|
|
|
|
"user__username",
|
|
|
|
"user__first_name",
|
|
|
|
"user__last_name",
|
|
|
|
"user__email",
|
|
|
|
"matiere__name",
|
|
|
|
"niveau",
|
|
|
|
)
|
|
|
|
list_filter = ("matiere", "niveau", "agrege")
|
2013-10-01 15:27:19 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2013-10-01 15:27:19 +02:00
|
|
|
class PetitCoursAttributionAdmin(admin.ModelAdmin):
|
2018-10-06 12:35:49 +02:00
|
|
|
list_display = ("user", "demande", "matiere", "rank")
|
|
|
|
search_fields = ("user__username", "matiere__name")
|
2013-10-01 15:27:19 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2013-10-01 15:27:19 +02:00
|
|
|
class PetitCoursAttributionCounterAdmin(admin.ModelAdmin):
|
2018-10-06 12:35:49 +02:00
|
|
|
list_display = ("user", "matiere", "count")
|
|
|
|
list_filter = ("matiere",)
|
|
|
|
search_fields = (
|
|
|
|
"user__username",
|
|
|
|
"user__first_name",
|
|
|
|
"user__last_name",
|
|
|
|
"user__email",
|
|
|
|
"matiere__name",
|
|
|
|
)
|
|
|
|
actions = ["reset"]
|
2016-06-17 18:31:10 +02:00
|
|
|
actions_on_bottom = True
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2016-06-17 18:31:10 +02:00
|
|
|
def reset(self, request, queryset):
|
|
|
|
queryset.update(count=0)
|
2018-10-06 12:35:49 +02:00
|
|
|
|
2016-07-08 23:04:34 +02:00
|
|
|
reset.short_description = "Remise à zéro du compteur"
|
2013-10-01 15:27:19 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2013-10-01 15:27:19 +02:00
|
|
|
class PetitCoursDemandeAdmin(admin.ModelAdmin):
|
2018-10-06 12:35:49 +02:00
|
|
|
list_display = (
|
|
|
|
"name",
|
|
|
|
"email",
|
|
|
|
"agrege_requis",
|
|
|
|
"niveau",
|
|
|
|
"created",
|
|
|
|
"traitee",
|
|
|
|
"processed",
|
|
|
|
)
|
|
|
|
list_filter = ("traitee", "niveau")
|
|
|
|
search_fields = ("name", "email", "phone", "lieu", "remarques")
|
2016-07-13 01:01:07 +02:00
|
|
|
|
|
|
|
|
2016-08-23 22:15:31 +02:00
|
|
|
class ClubAdminForm(forms.ModelForm):
|
|
|
|
def clean(self):
|
2018-01-16 16:22:52 +01:00
|
|
|
cleaned_data = super().clean()
|
2018-10-06 12:35:49 +02:00
|
|
|
respos = cleaned_data.get("respos")
|
|
|
|
members = cleaned_data.get("membres")
|
2016-08-23 22:15:31 +02:00
|
|
|
for respo in respos.all():
|
|
|
|
if respo not in members:
|
|
|
|
raise forms.ValidationError(
|
|
|
|
"Erreur : le respo %s n'est pas membre du club."
|
2018-10-06 12:35:49 +02:00
|
|
|
% respo.get_full_name()
|
|
|
|
)
|
2016-08-23 22:15:31 +02:00
|
|
|
return cleaned_data
|
|
|
|
|
|
|
|
|
|
|
|
class ClubAdmin(admin.ModelAdmin):
|
2018-10-06 12:35:49 +02:00
|
|
|
list_display = ["name"]
|
2016-08-23 22:15:31 +02:00
|
|
|
form = ClubAdminForm
|
|
|
|
|
|
|
|
|
2012-06-27 23:28:35 +02:00
|
|
|
admin.site.register(Survey, SurveyAdmin)
|
|
|
|
admin.site.register(SurveyQuestion, SurveyQuestionAdmin)
|
|
|
|
admin.site.register(Event, EventAdmin)
|
|
|
|
admin.site.register(EventOption, EventOptionAdmin)
|
2012-07-11 17:39:20 +02:00
|
|
|
admin.site.unregister(User)
|
|
|
|
admin.site.register(User, UserProfileAdmin)
|
|
|
|
admin.site.register(CofProfile)
|
2016-08-23 22:15:31 +02:00
|
|
|
admin.site.register(Club, ClubAdmin)
|
2013-09-05 22:20:52 +02:00
|
|
|
admin.site.register(PetitCoursSubject)
|
2013-10-01 15:27:19 +02:00
|
|
|
admin.site.register(PetitCoursAbility, PetitCoursAbilityAdmin)
|
|
|
|
admin.site.register(PetitCoursAttribution, PetitCoursAttributionAdmin)
|
2018-10-06 12:35:49 +02:00
|
|
|
admin.site.register(PetitCoursAttributionCounter, PetitCoursAttributionCounterAdmin)
|
2013-10-01 15:27:19 +02:00
|
|
|
admin.site.register(PetitCoursDemande, PetitCoursDemandeAdmin)
|
2013-09-05 22:20:52 +02:00
|
|
|
admin.site.register(EventRegistration, EventRegistrationAdmin)
|