Files
rengine/web/dashboard/urls.py
T

20 lines
339 B
Python

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