2020-02-18 20:30:26 +00:00
|
|
|
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2019-08-15 19:52:10 +00:00
|
|
|
|
|
|
|
import django_tables2 as tables
|
2019-09-23 10:50:14 +00:00
|
|
|
from django.contrib.auth.models import User
|
2019-08-15 19:52:10 +00:00
|
|
|
|
2020-02-18 20:14:29 +00:00
|
|
|
from .models import Club
|
|
|
|
|
2020-02-18 11:31:15 +00:00
|
|
|
|
2019-08-15 19:52:10 +00:00
|
|
|
class ClubTable(tables.Table):
|
|
|
|
class Meta:
|
2020-02-18 11:31:15 +00:00
|
|
|
attrs = {
|
2020-02-21 11:29:11 +00:00
|
|
|
'class': 'table table-condensed table-striped table-hover'
|
2020-02-18 11:31:15 +00:00
|
|
|
}
|
2019-08-15 19:52:10 +00:00
|
|
|
model = Club
|
2020-02-21 11:29:11 +00:00
|
|
|
template_name = 'django_tables2/bootstrap4.html'
|
2020-02-18 11:31:15 +00:00
|
|
|
fields = ('id', 'name', 'email')
|
|
|
|
row_attrs = {
|
|
|
|
'class': 'table-row',
|
2020-03-25 15:11:44 +00:00
|
|
|
'id': lambda record: "row-" + str(record.pk),
|
2020-02-18 11:31:15 +00:00
|
|
|
'data-href': lambda record: record.pk
|
|
|
|
}
|
2019-09-23 10:50:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
class UserTable(tables.Table):
|
|
|
|
section = tables.Column(accessor='profile.section')
|
|
|
|
solde = tables.Column(accessor='note.balance')
|
|
|
|
|
|
|
|
class Meta:
|
2020-02-18 11:31:15 +00:00
|
|
|
attrs = {
|
2020-02-21 11:29:11 +00:00
|
|
|
'class': 'table table-condensed table-striped table-hover'
|
2020-02-18 11:31:15 +00:00
|
|
|
}
|
2020-02-21 11:29:11 +00:00
|
|
|
template_name = 'django_tables2/bootstrap4.html'
|
2020-02-18 11:31:15 +00:00
|
|
|
fields = ('last_name', 'first_name', 'username', 'email')
|
2019-09-23 10:50:14 +00:00
|
|
|
model = User
|