Add list view and admin for bookmarks

This commit is contained in:
2021-03-10 08:58:23 -06:00
parent 80a1048533
commit c9d0d81972
6 changed files with 36 additions and 5 deletions

View File

@@ -14,8 +14,9 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from django.urls import include, path
urlpatterns = [
path('bookmarks/', include('bookmarks.urls')),
path('admin/', admin.site.urls),
]