回答編集履歴
1
修正
test
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
これでいいと思います。
|
2
2
|
|
3
3
|
```Python
|
4
|
+
|
5
|
+
# urls.py
|
6
|
+
|
7
|
+
path('detail/<int:pk>/', detail, name="detail"),
|
8
|
+
|
9
|
+
```
|
10
|
+
|
11
|
+
```Python
|
12
|
+
|
13
|
+
# views.py
|
4
14
|
|
5
15
|
from django.utils import timezone
|
6
16
|
|