mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-06-21 11:18:27 +02:00
Click on pool table
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
import django_tables2 as tables
|
||||
from django.urls import reverse_lazy
|
||||
from django.utils.translation import gettext as _
|
||||
from django_tables2 import A
|
||||
|
||||
@ -119,7 +120,12 @@ class PoolTable(tables.Table):
|
||||
|
||||
class Meta:
|
||||
model = Pool
|
||||
fields = ("teams", "problems", "round", "juries", )
|
||||
fields = ("teams", "tournament", "problems", "round", "juries", )
|
||||
attrs = {
|
||||
'class': 'table table-condensed table-striped table-hover'
|
||||
}
|
||||
row_attrs = {
|
||||
'style': 'cursor: pointer;',
|
||||
'class': 'row-control',
|
||||
'data-href': lambda record: reverse_lazy('tournament:pool_detail', args=(record.pk,)),
|
||||
}
|
||||
|
Reference in New Issue
Block a user