質問編集履歴
1
request
title
CHANGED
File without changes
|
body
CHANGED
@@ -36,14 +36,14 @@
|
|
36
36
|
from django.shortcuts import render
|
37
37
|
|
38
38
|
|
39
|
-
def index(
|
39
|
+
def index(request):
|
40
40
|
index_list = {'1': '1. メニュー1',
|
41
41
|
'2': '2. メニュー2',
|
42
42
|
'3': '3. メニュー3'}
|
43
43
|
content = {
|
44
44
|
'index_list': index_list
|
45
45
|
}
|
46
|
-
return render(
|
46
|
+
return render(request, './Title/index.html', content)
|
47
47
|
```
|
48
48
|
|
49
49
|
```html
|