diff --git a/atlas/urls.py b/atlas/urls.py index 991eccc2..d0696f14 100755 --- a/atlas/urls.py +++ b/atlas/urls.py @@ -4,7 +4,7 @@ from . import views app_name = "atlas" urlpatterns = [ - # path('', views.question_list, name='question_list'), + path('', views.CaseView.as_view, name='index'), path("author//", views.author_detail, name="author_detail"), path("author/", views.author_list, name="author_list"), path("cases/", views.CaseView.as_view(), name="case_view"), diff --git a/templates/base.html b/templates/base.html index 3fb6f3c3..4c65e603 100644 --- a/templates/base.html +++ b/templates/base.html @@ -68,6 +68,9 @@ SBAs + + Atlas + {% endif %} {% if request.user.is_staff %}