1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-21 14:38:24 +02:00

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

@ -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 %}