上記のサイトを参考にwebpage作成を行っていますが、
python manage.py runserverを実行すると "Page not found" とエラーが吐かれました。
urls.py関連でエラーが吐かれているのではないかと思っています。。
原因と解決を知りてたいです。よろしくお願いします
環境:python, mac catalina
Error
1Using the URLconf defined in mybook.urls, Django tried these URL patterns, in this order: 2 3cms/ 4admin/ 5The empty path didn't match any of these. 6 7You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.
↓mybook/urls.py
python
1from django.urls import path 2from cms import views 3from django.contrib import admin 4from django.urls import path, include 5 6app_name = 'cms' 7urlpatterns = [ 8 # 書籍 9 path('cms/', include('cms.urls')), 10 path('admin/', admin.site.urls), # 一覧 11] 12 13]
↓cms/urls.py
python
1from django.urls import path 2from cms import views 3 4app_name = 'cms' 5urlpatterns = [ 6 # 書籍 7 path('book/', views.book_list, name='book_list'), # 一覧 8] 9
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/28 02:02
swing_swimming
2020/09/28 12:31