From 7ebb1ccfa64f32d8871c0a1c58a628ab91df1d28 Mon Sep 17 00:00:00 2001 From: Johan Castiblanco Date: Fri, 30 Jun 2023 12:36:20 -0500 Subject: [PATCH] feat: use frontend as experience use it This would be considered in future of the need of a refactor, but by the moment is better to have the templates views that use react with the same shape. --- eox_nelp/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eox_nelp/urls.py b/eox_nelp/urls.py index 2d70d7c9..d3048358 100644 --- a/eox_nelp/urls.py +++ b/eox_nelp/urls.py @@ -29,5 +29,5 @@ include('eox_nelp.course_experience.frontend.urls', namespace='course-experience-frontend'), ), path('api/stats/', include('eox_nelp.stats.api.urls', namespace='stats-api')), - path('stats/', include('eox_nelp.stats.urls', namespace='stats')), + path('frontend/stats/', include('eox_nelp.stats.urls', namespace='stats')), ]