Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions testapp/testapp/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""

from django.contrib import admin
from django.urls import path, include

urlpatterns = [
path('', include(('theme.urls', 'theme'), namespace='surface_theme')),
path('admin/', admin.site.urls),
path("", include(("theme.urls", "theme"), namespace="surface_theme")),
path("admin/", admin.site.urls),
]

admin.site.site_title = "Surface Security"
3 changes: 3 additions & 0 deletions theme/static/assets/css/surface.css
Original file line number Diff line number Diff line change
Expand Up @@ -195,3 +195,6 @@ ul li {
position: relative;
min-width: 0px;
}
input[type=text].form-control {
width: 50%;
}