Files
rengine/web/dashboard/urls.py
T
2022-04-24 22:57:32 +05:30

20 lines
339 B
Python

from django.contrib import admin
from django.urls import path, include
from . import views
urlpatterns = [
path(
'',
views.index,
name='dashboardIndex'),
path(
'profile/',
views.profile,
name='profile'),
path(
'search/',
views.search,
name='search'),
]