|
{% extends "base.html" %}
|
|
|
|
{% load i18n django_tables2 %}
|
|
|
|
{% block content %}
|
|
{% render_table table %}
|
|
|
|
{% if user.admin %}
|
|
<hr>
|
|
<a href="{% url "tournament:create_pool" %}"><button class="btn btn-secondary btn-block">{% trans "Add pool" %}</button></a>
|
|
{% endif %}
|
|
{% endblock %}
|