1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-07-01 00:01:26 +02:00

Move some buttons, my account form is now working

This commit is contained in:
Yohann D'ANELLO
2020-05-15 02:44:59 +02:00
parent f01537719b
commit 9ba4d88e3d
5 changed files with 12 additions and 11 deletions

View File

@ -4,6 +4,7 @@
{% block content %}
<form method="post">
{% csrf_token %}
{{ form|crispy }}
<input type="submit" class="btn btn-primary btn-block" value="{% trans "Submit" %}">
</form>

View File

@ -4,4 +4,8 @@
{% block content %}
{% render_table table %}
{% if user.admin %}
<hr>
<a class="btn btn-block btn-secondary" href="{% url "tournament:add_organizer" %}"><i class="fas fa-user-plus"></i> {% trans "Add an organizer" %}</a>
{% endif %}
{% endblock %}