Skip to content

Commit

Permalink
Update urls.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Jugador7 authored Aug 20, 2024
1 parent 9a2369b commit 8f14627
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/djangoproj/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
path('login/', TemplateView.as_view(template_name="index.html")),
path('register/', TemplateView.as_view(template_name="index.html")),
path('dealers/', TemplateView.as_view(template_name="index.html")),
path('dealer/<int:dealer_id>',TemplateView.as_view(template_name="index.html")),
path('postreview/<int:dealer_id>',TemplateView.as_view(template_name="index.html")),
path('dealer/<int:dealer_id>', TemplateView.as_view(template_name="index.html")),
path('postreview/<int:dealer_id>', TemplateView.as_view(template_name="index.html")),
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)

0 comments on commit 8f14627

Please sign in to comment.