23 lines
568 B
HTML
23 lines
568 B
HTML
<!-- templates/participants/form.html -->
|
||
{% extends "base.html" %}
|
||
{% block content %}
|
||
|
||
<!-- Form: añadir grupo -->
|
||
<form method="post" action="" class="space-y-2">
|
||
{% csrf_token %}
|
||
{{ form.as_p }}
|
||
<button class="px-4 py-2 bg-amber-500 rounded">
|
||
Añadir
|
||
</button>
|
||
</form>
|
||
|
||
<!-- Botón único: calcula + redirige al ranking -->
|
||
<form method="post" action="{% url 'calculate' %}" class="mt-4">
|
||
{% csrf_token %}
|
||
<button class="px-4 py-2 bg-lime-600 rounded">
|
||
Calcular y mostrar ranking
|
||
</button>
|
||
</form>
|
||
|
||
{% endblock %}
|