TrafoKing/templates/participants/form.html
Pedro Jose Romero Gombau b3f0d2a966 Init
2025-05-12 22:27:34 +02:00

23 lines
568 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- 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&nbsp;y&nbsp;mostrar&nbsp;ranking
</button>
</form>
{% endblock %}