Commit 8dffcd7c authored by Cheska Hung's avatar Cheska Hung

changed url paths to appropriate name

parent 8b8494d6
from django.urls import path from django.urls import path
from .views import index from .views import DashboardView
urlpatterns = [ urlpatterns = [
path('', index, name='index'), path('Dashboard/', DashboardView.as_view()),
] ]
app_name = "Dashboard" app_name = "Dashboard"
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment