TrafoKing/apps/participants/urls.py
2025-05-12 23:08:39 +02:00

9 lines
348 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"),
]