Commit 82477bc6 authored by impfundev's avatar impfundev

feat: add homepage

parent 6ec35b41
......@@ -18,8 +18,10 @@ Including another URLconf
from django.contrib import admin
from django.urls import path
from django.conf.urls import include
from dashboards.views import home
urlpatterns = [
path("", home, name="homepage"),
path("dashboard/", include("dashboards.urls")),
path("admin/", admin.site.urls),
path("auth/", include("authentications.urls")),
......
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