mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-12-24 18:22:24 +00:00
Click on pool table
This commit is contained in:
parent
ac9591c320
commit
b7c62741a8
@ -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,)),
|
||||
}
|
||||
|
@ -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 %}
|
||||
|
@ -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 %}
|
||||
|
Loading…
Reference in New Issue
Block a user