TrafoKing/apps/participants/urls.py
Pedro Jose Romero Gombau b3f0d2a966 Init
2025-05-12 22:27:34 +02:00

9 lines
318 B
Python

from django.urls import path
from .views import ParticipantCreateView, CalculateView, ResultsView
urlpatterns = [
path("", ParticipantCreateView.as_view(), name="participant_new"),
path("calcular/", CalculateView.as_view(), name="calculate"),
path("resultados/", ResultsView.as_view(), name="results"),
]