Skip to content

Commit 260cd02

Browse files
authored
Merge pull request #8 from cmu-delphi/development
Fixed base urls
2 parents 4a5d53b + e3c860a commit 260cd02

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/base/urls.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from django.urls import path, re_path
1+
from django.urls import re_path
22
from django.urls.resolvers import URLPattern
33

44
from base.views import epidata

src/epiportal/urls.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
include("indicatorsets.urls"),
4444
),
4545
path(
46-
f"{settings.MAIN_PAGE}/base" if settings.MAIN_PAGE else "",
46+
f"{settings.MAIN_PAGE}/" if settings.MAIN_PAGE else "",
4747
include("base.urls"),
4848
),
4949
path("__debug__/", include("debug_toolbar.urls")),

0 commit comments

Comments
 (0)