質問編集履歴
1
request
test
CHANGED
File without changes
|
test
CHANGED
@@ -74,7 +74,7 @@
|
|
74
74
|
|
75
75
|
|
76
76
|
|
77
|
-
def index(res
|
77
|
+
def index(request):
|
78
78
|
|
79
79
|
index_list = {'1': '1. メニュー1',
|
80
80
|
|
@@ -88,7 +88,7 @@
|
|
88
88
|
|
89
89
|
}
|
90
90
|
|
91
|
-
return render(res
|
91
|
+
return render(request, './Title/index.html', content)
|
92
92
|
|
93
93
|
```
|
94
94
|
|