mirror of https://gitlab.crans.org/bde/nk20
26 lines
732 B
Python
26 lines
732 B
Python
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import django_tables2 as tables
|
|
from django.urls import reverse_lazy
|
|
|
|
from .models import WEIClub
|
|
|
|
|
|
class WEITable(tables.Table):
|
|
"""
|
|
List all clubs.
|
|
"""
|
|
class Meta:
|
|
attrs = {
|
|
'class': 'table table-condensed table-striped table-hover'
|
|
}
|
|
model = WEIClub
|
|
template_name = 'django_tables2/bootstrap4.html'
|
|
fields = ('name', 'year', 'date_start', 'date_end',)
|
|
row_attrs = {
|
|
'class': 'table-row',
|
|
'id': lambda record: "row-" + str(record.pk),
|
|
'data-href': lambda record: reverse_lazy('wei:wei_detail', args=(record.pk,))
|
|
}
|