Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
Yohann D'ANELLO 2021-10-05 11:46:24 +02:00
parent ba3c0fb18d
commit a05dfcbf3d
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ class ClubTable(tables.Table):
'class': 'table-row',
'id': lambda record: "row-" + str(record.pk),
'data-href': lambda record: record.pk,
'style':'cursor:pointer',
'style': 'cursor:pointer',
}
@ -76,7 +76,7 @@ class UserTable(tables.Table):
row_attrs = {
'class': 'table-row',
'data-href': lambda record: record.pk,
'style':'cursor:pointer',
'style': 'cursor:pointer',
}