質問編集履歴
1
追加で調査して、変数の形をシンプルしたところ動く例も見つかった点を追加。
test
CHANGED
File without changes
|
test
CHANGED
@@ -132,6 +132,56 @@
|
|
132
132
|
|
133
133
|
|
134
134
|
|
135
|
+
view.pyで
|
136
|
+
|
137
|
+
```Python
|
138
|
+
|
139
|
+
test = "D"
|
140
|
+
|
141
|
+
return render(request, 'contact/detail.html',
|
142
|
+
|
143
|
+
{
|
144
|
+
|
145
|
+
'record': record,
|
146
|
+
|
147
|
+
'bank_id': bank_id,
|
148
|
+
|
149
|
+
'bank': bank,
|
150
|
+
|
151
|
+
'branch': branch,
|
152
|
+
|
153
|
+
'test': test,
|
154
|
+
|
155
|
+
}
|
156
|
+
|
157
|
+
)
|
158
|
+
|
159
|
+
```
|
160
|
+
|
161
|
+
テンプレート側で
|
162
|
+
|
163
|
+
```Python
|
164
|
+
|
165
|
+
{% if test == "D" %}
|
166
|
+
|
167
|
+
OK
|
168
|
+
|
169
|
+
{% else %}
|
170
|
+
|
171
|
+
NG
|
172
|
+
|
173
|
+
{% endif %}
|
174
|
+
|
175
|
+
```
|
176
|
+
|
177
|
+
とするとOKが表示される。
|
178
|
+
|
179
|
+
|
180
|
+
|
181
|
+
https://docs.djangoproject.com/ja/1.11/ref/templates/api/#rendering-a-context
|
182
|
+
|
183
|
+
に関連する内容かもしれない。
|
184
|
+
|
135
185
|
|
136
186
|
|
137
187
|
###補足情報(言語/FW/ツール等のバージョンなど)
|