This commit is contained in:
Kristofers Solo 2023-03-27 09:03:02 +03:00
parent 430bac392f
commit 1ad7875fd8
2 changed files with 5 additions and 5 deletions

View File

@ -4,6 +4,6 @@ from . import views
urlpatterns = [
path("", views.index, name="home"),
path("karbs", views.karbs, name="karbs"),
path("lightsaber", views.lightsaber, name="lightsaber"),
path("karbs/", views.karbs, name="karbs"),
path("lightsaber/", views.lightsaber, name="lightsaber"),
]

View File

@ -4,7 +4,7 @@ from . import views
urlpatterns = [
path("", views.projects, name="projects"),
path("karbs", views.karbs, name="karbs"),
path("karbs/instructions", views.instructions, name="instructions"),
path("traffic-light-detector", views.traffic_light_detector, name="traffic-light-detector"),
path("karbs/", views.karbs, name="karbs"),
path("karbs/instructions/", views.instructions, name="instructions"),
path("traffic-light-detector/", views.traffic_light_detector, name="traffic-light-detector"),
]