mirror of https://gitlab.crans.org/bde/nk20
23 lines
680 B
Python
23 lines
680 B
Python
# Copyright (C) 2018-2022 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 sheets.models import Sheet
|
|
|
|
|
|
class SheetTable(tables.Table):
|
|
class Meta:
|
|
attrs = {
|
|
'class': 'table table-condensed table-striped table-hover'
|
|
}
|
|
model = Sheet
|
|
template_name = 'django_tables2/bootstrap4.html'
|
|
fields = ('name', 'date', )
|
|
row_attrs = {
|
|
'class': 'table-row',
|
|
'id': lambda record: "row-" + str(record.pk),
|
|
'data-href': lambda record: reverse_lazy('sheets:sheet_detail', args=(record.pk,))
|
|
}
|