mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 15:57:44 +02:00
16 lines
264 B
Python
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'),
|
|
]
|