This commit is contained in:
@@ -4,11 +4,18 @@ from django.conf import settings
|
||||
from django.conf.urls.static import static
|
||||
from django.contrib import admin
|
||||
from django.contrib.auth import views as auth_views
|
||||
from django.templatetags.static import static as static_url
|
||||
from django.urls import include, path
|
||||
from django.views.generic import RedirectView
|
||||
|
||||
from apps.core.views import SecurityAwareLoginView
|
||||
|
||||
urlpatterns = [
|
||||
path(
|
||||
"favicon.ico",
|
||||
RedirectView.as_view(url=static_url("favicon.svg"), permanent=True),
|
||||
name="favicon",
|
||||
),
|
||||
path("admin/", admin.site.urls),
|
||||
path(
|
||||
"login/",
|
||||
|
||||
Reference in New Issue
Block a user