質問編集履歴

6

a

2020/09/28 02:06

投稿

Kenza
Kenza

スコア21

test CHANGED
File without changes
test CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  urls.py関連でエラーが吐かれているのではないかと思っています。。
12
12
 
13
- 原因と解決を知りてたいです。よろしくお願いします
13
+ 原因と解決を知りてたいです。よろしくお願いします
14
14
 
15
15
 
16
16
 

5

code

2020/09/28 02:06

投稿

Kenza
Kenza

スコア21

test CHANGED
File without changes
test CHANGED
@@ -71,3 +71,29 @@
71
71
  ]
72
72
 
73
73
  ```
74
+
75
+
76
+
77
+ ↓cms/urls.py
78
+
79
+ ```python
80
+
81
+ from django.urls import path
82
+
83
+ from cms import views
84
+
85
+
86
+
87
+ app_name = 'cms'
88
+
89
+ urlpatterns = [
90
+
91
+ # 書籍
92
+
93
+ path('book/', views.book_list, name='book_list'), # 一覧
94
+
95
+ ]
96
+
97
+
98
+
99
+ ```

4

っf

2020/09/28 02:05

投稿

Kenza
Kenza

スコア21

test CHANGED
File without changes
test CHANGED
@@ -28,7 +28,7 @@
28
28
 
29
29
  cms/
30
30
 
31
- book/ [name='book_list']
31
+ admin/
32
32
 
33
33
  The empty path didn't match any of these.
34
34
 

3

ここ

2020/09/26 03:43

投稿

Kenza
Kenza

スコア21

test CHANGED
File without changes
test CHANGED
@@ -62,7 +62,11 @@
62
62
 
63
63
  path('cms/', include('cms.urls')),
64
64
 
65
- path('book/', views.book_list, name='book_list'), # 一覧
65
+ path('admin/', admin.site.urls), # 一覧
66
+
67
+ ]
68
+
69
+
66
70
 
67
71
  ]
68
72
 

2

k

2020/09/26 03:39

投稿

Kenza
Kenza

スコア21

test CHANGED
File without changes
test CHANGED
@@ -2,7 +2,9 @@
2
2
 
3
3
 
4
4
 
5
+ 上記のサイトを参考にwebpage作成を行っていますが、
6
+
5
- 上記のサイトを参考にwebpage作成行っていますが、実行すると "Page not found" とエラーが吐かれました。
7
+ python manage.py runserverを実行すると "Page not found" とエラーが吐かれました。
6
8
 
7
9
 
8
10
 

1

link

2020/09/26 03:36

投稿

Kenza
Kenza

スコア21

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,6 @@
1
- https://qiita.com/Nidhog-tm/items/433b78a85493ed53fb14
1
+ [参照サイト](https://qiita.com/Nidhog-tm/items/433b78a85493ed53fb14)
2
+
3
+
2
4
 
3
5
  上記のサイトを参考にwebpage作成を行っていますが、実行すると "Page not found" とエラーが吐かれました。
4
6