Click on pool table

This commit is contained in:
Yohann D'ANELLO 2020-05-05 06:07:49 +02:00
parent ac9591c320
commit b7c62741a8
3 changed files with 24 additions and 1 deletions

View File

@ -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,)),
}

View File

@ -67,4 +67,10 @@
</div>
</div>
{% endif %}
<hr>
<div class="text-center">
<a class="btn btn-block btn-primary" href="{% url "tournament:pools" %}">{% trans "Pool list" %}</a>
</div>
{% endblock %}

View File

@ -10,3 +10,14 @@
<a href="{% url "tournament:create_pool" %}"><button class="btn btn-secondary btn-block">{% trans "Add pool" %}</button></a>
{% endif %}
{% endblock %}
{% block extrajavascript %}
<script>
$(document).ready(function() {
$(".row-control").click(function() {
location.href = $(this).data("href");
});
});
</script>
{% endblock %}