This commit is contained in:
Ross
2021-11-23 19:34:50 +00:00
parent 92c52896d0
commit 70958dc4d7
4 changed files with 74 additions and 4 deletions
+1
View File
@@ -37,6 +37,7 @@ INSTALLED_APPS = [
'longs',
'sbas',
'wally',
'atlas',
"reversion",
"django_tables2",
"django_filters",
+1
View File
@@ -52,6 +52,7 @@ urlpatterns = [
path("longs/", include("longs.urls"), name="longs"),
path("sbas/", include("sbas.urls"), name="sbas"),
path("generic/", include("generic.urls"), name="generic"),
path("atlas/", include("atlas.urls"), name="atlas"),
path("accounts/", include("django.contrib.auth.urls")),
path("accounts/profile", views.profile, name="profile"),
path("", TemplateView.as_view(template_name="index.html"), name="home"),