mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-10-31 15:50:03 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			149 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			149 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Copyright (C) 2018-2025 by BDE ENS Paris-Saclay
 | |
| # SPDX-License-Identifier: GPL-3.0-or-later
 | |
| 
 | |
| from django.utils import timezone
 | |
| from django.utils.html import escape
 | |
| from django.utils.safestring import mark_safe
 | |
| from django.utils.translation import gettext_lazy as _
 | |
| from note_kfet.middlewares import get_current_request
 | |
| import django_tables2 as tables
 | |
| from django_tables2 import A
 | |
| from permission.backends import PermissionBackend
 | |
| from note.templatetags.pretty_money import pretty_money
 | |
| 
 | |
| from .models import Activity, Entry, Guest, Opener
 | |
| 
 | |
| 
 | |
| class ActivityTable(tables.Table):
 | |
|     name = tables.LinkColumn(
 | |
|         'activity:activity_detail',
 | |
|         args=[A('pk'), ],
 | |
|     )
 | |
| 
 | |
|     class Meta:
 | |
|         attrs = {
 | |
|             'class': 'table table-condensed table-striped table-hover'
 | |
|         }
 | |
|         row_attrs = {
 | |
|             'class': lambda record: 'bg-success' if record.open else ('' if record.valid else 'bg-warning'),
 | |
|             'title': lambda record: _("The activity is currently open.") if record.open else
 | |
|             ('' if record.valid else _("The validation of the activity is pending.")),
 | |
|         }
 | |
|         model = Activity
 | |
|         template_name = 'django_tables2/bootstrap4.html'
 | |
|         fields = ('name', 'activity_type', 'organizer', 'attendees_club', 'date_start', 'date_end', )
 | |
| 
 | |
| 
 | |
| class GuestTable(tables.Table):
 | |
|     inviter = tables.LinkColumn(
 | |
|         'member:user_detail',
 | |
|         args=[A('inviter__user__pk'), ],
 | |
|     )
 | |
| 
 | |
|     entry = tables.Column(
 | |
|         empty_values=(),
 | |
|         verbose_name=_("Remove"),
 | |
|     )
 | |
| 
 | |
|     class Meta:
 | |
|         attrs = {
 | |
|             'class': 'table table-condensed table-striped'
 | |
|         }
 | |
|         model = Guest
 | |
|         template_name = 'django_tables2/bootstrap4.html'
 | |
|         fields = ("last_name", "first_name", "inviter", "school")
 | |
| 
 | |
|     def render_entry(self, record):
 | |
|         if record.has_entry:
 | |
|             return str(_("Entered on ") + str(_("{:%Y-%m-%d %H:%M:%S}").format(timezone.localtime(record.entry.time))))
 | |
|         return mark_safe('<button id="{id}" class="btn btn-danger btn-sm" onclick="remove_guest(this.id)"> '
 | |
|                          '{delete_trans}</button>'.format(id=record.id, delete_trans=_("remove").capitalize()))
 | |
| 
 | |
| 
 | |
| def get_row_class(record):
 | |
|     c = "table-row"
 | |
|     if isinstance(record, Guest):
 | |
|         if record.has_entry:
 | |
|             c += " table-success"
 | |
|         else:
 | |
|             c += " table-warning"
 | |
|     else:
 | |
|         qs = Entry.objects.filter(note=record.note, activity=record.activity, guest=None)
 | |
|         if qs.exists():
 | |
|             c += " table-success"
 | |
|         elif not record.note.user.memberships.filter(club=record.activity.attendees_club,
 | |
|                                                      date_start__lte=timezone.now(),
 | |
|                                                      date_end__gte=timezone.now()).exists():
 | |
|             c += " table-info"
 | |
|         elif record.note.balance < 0:
 | |
|             c += " table-danger"
 | |
|     return c
 | |
| 
 | |
| 
 | |
| class EntryTable(tables.Table):
 | |
|     type = tables.Column(verbose_name=_("Type"))
 | |
| 
 | |
|     last_name = tables.Column(verbose_name=_("Last name"))
 | |
| 
 | |
|     first_name = tables.Column(verbose_name=_("First name"))
 | |
| 
 | |
|     note_name = tables.Column(verbose_name=_("Note"))
 | |
| 
 | |
|     balance = tables.Column(verbose_name=_("Balance"))
 | |
| 
 | |
|     def render_note_name(self, value, record):
 | |
|         if hasattr(record, 'username'):
 | |
|             username = record.username
 | |
|             if username != value:
 | |
|                 return mark_safe(escape(value) + " <em>aka.</em> " + escape(username))
 | |
|         return value
 | |
| 
 | |
|     def render_balance(self, value):
 | |
|         return pretty_money(value)
 | |
| 
 | |
|     class Meta:
 | |
|         attrs = {
 | |
|             'class': 'table table-condensed table-striped table-hover'
 | |
|         }
 | |
|         template_name = 'django_tables2/bootstrap4.html'
 | |
|         row_attrs = {
 | |
|             'class': lambda record: get_row_class(record),
 | |
|             'id': lambda record: "row-" + ("guest-" if isinstance(record, Guest) else "membership-") + str(record.pk),
 | |
|             'data-type': lambda record: "guest" if isinstance(record, Guest) else "membership",
 | |
|             'data-id': lambda record: record.pk if isinstance(record, Guest) else record.note.pk,
 | |
|             'data-inviter': lambda record: record.inviter.pk if isinstance(record, Guest) else "",
 | |
|             'data-last-name': lambda record: record.last_name,
 | |
|             'data-first-name': lambda record: record.first_name,
 | |
|         }
 | |
| 
 | |
| 
 | |
| # function delete_button(id) provided in template file
 | |
| DELETE_TEMPLATE = """
 | |
|     <button id="{{ record.pk }}" class="btn btn-danger btn-sm" onclick="delete_button(this.id)"> {{ delete_trans }}</button>
 | |
| """
 | |
| 
 | |
| 
 | |
| class OpenerTable(tables.Table):
 | |
|     class Meta:
 | |
|         attrs = {
 | |
|             'class': 'table table condensed table-striped',
 | |
|             'id': "opener_table"
 | |
|         }
 | |
|         model = Opener
 | |
|         fields = ("opener",)
 | |
|         template_name = 'django_tables2/bootstrap4.html'
 | |
| 
 | |
|     show_header = False
 | |
|     opener = tables.Column(attrs={'td': {'class': 'text-center'}})
 | |
| 
 | |
|     delete_col = tables.TemplateColumn(
 | |
|         template_code=DELETE_TEMPLATE,
 | |
|         extra_context={"delete_trans": _('Delete')},
 | |
|         attrs={
 | |
|             'td': {
 | |
|                 'class': lambda record: 'col-sm-1'
 | |
|                 + (' d-none' if not PermissionBackend.check_perm(
 | |
|                     get_current_request(), "activity.delete_opener", record)
 | |
|                    else '')}},
 | |
|         verbose_name=_("Delete"),)
 |