Files
rengine/dashboard/urls.py
T

16 lines
264 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'),
]