質問編集履歴
2
情報の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -192,4 +192,12 @@
|
|
192
192
|
|
193
193
|
```
|
194
194
|
|
195
|
+
と書きました。
|
196
|
+
|
197
|
+
ディレクトリ構造は、
|
198
|
+
|
199
|
+

|
200
|
+
|
201
|
+
のようになっております。
|
202
|
+
|
195
|
-
|
203
|
+
どう直せば表示させられるでしょうか?
|
1
情報の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -106,13 +106,15 @@
|
|
106
106
|
|
107
107
|
form = VoteForm(question=obj)
|
108
108
|
|
109
|
-
return render(request,'poll/detail.html',{
|
109
|
+
return render(request,'polls/detail.html',{
|
110
110
|
|
111
111
|
'form':form,
|
112
112
|
|
113
113
|
'question': obj,
|
114
114
|
|
115
115
|
})
|
116
|
+
|
117
|
+
|
116
118
|
|
117
119
|
|
118
120
|
|