diff options
| author | Bobby <[email protected]> | 2022-11-22 03:59:19 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-11-22 03:59:19 -0500 |
| commit | 0c6507767655598026102c4adb0bca2d2abc732f (patch) | |
| tree | 879b76ca69788df289960dc5b1f016d7ba3d9dda | |
| parent | 995766880a05bd2b9fb6a1bf1865395592aceb8c (diff) | |
| download | thatcomputerscientist-0c6507767655598026102c4adb0bca2d2abc732f.tar.xz thatcomputerscientist-0c6507767655598026102c4adb0bca2d2abc732f.zip | |
fix admin urls
| -rw-r--r-- | thatcomputerscientist/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thatcomputerscientist/urls.py b/thatcomputerscientist/urls.py index acb73920..beecdefe 100644 --- a/thatcomputerscientist/urls.py +++ b/thatcomputerscientist/urls.py @@ -29,7 +29,7 @@ sitemaps = { } urlpatterns = [ - path('admin', admin.site.urls), + path('admin/', admin.site.urls), path('', include('blog.urls', namespace='blog')), path('users', include('users.urls', namespace='users')), path('blog-admin', include('blog_admin.urls', namespace='blog-admin')), |
