Skip to content

Commit

Permalink
fixed urls template for the arctic start command
Browse files Browse the repository at this point in the history
  • Loading branch information
David Esteves committed May 24, 2019
1 parent 93ee067 commit 0359bdc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions arctic/project_template/config/urls.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
from django.conf.urls import include, url

from arctic.generics import LoginView
from arctic.views import handler400, handler403, handler404, handler500 # noqa
from arctic.generics import LoginView, LogoutView
from arctic.views import handler400, handler403, handler404 # noqa


urlpatterns = [
url(r"^login/$", LoginView.as_view(), name="login"),
url(r"^logout/$", LogoutView.as_view(), name="logout"),
url(r"^arctic/", include("arctic.urls", namespace="arctic")),
url(r"^", include("dashboard.urls")),
]

0 comments on commit 0359bdc

Please sign in to comment.