質問編集履歴
1
情報の修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
pythonで条件分岐を行いたいが上手くいかない。
|
test
CHANGED
@@ -1,67 +1 @@
|
|
1
|
-
|
1
|
+
pythonで条件分岐を行いたいのですが、上手くいきません。
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
parts.html
|
6
|
-
|
7
|
-
```python
|
8
|
-
|
9
|
-
{% if request.path == "/user/test/<int:pk>/" %}
|
10
|
-
|
11
|
-
<p>ユーザーテスト</p>
|
12
|
-
|
13
|
-
{% else %}
|
14
|
-
|
15
|
-
<p>ユーザー確認テスト</p>
|
16
|
-
|
17
|
-
{% endif %}
|
18
|
-
|
19
|
-
```
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
user/test.html
|
24
|
-
|
25
|
-
```python
|
26
|
-
|
27
|
-
{% include 'parts.html' %}
|
28
|
-
|
29
|
-
```
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
期待する出力結果
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
ユーザーテスト
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
user/test_confirmation.html
|
42
|
-
|
43
|
-
```python
|
44
|
-
|
45
|
-
{% include 'parts.html' %}
|
46
|
-
|
47
|
-
```
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
期待する出力結果
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
ユーザー確認テスト
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
request.pathでURLを取得出来ることは分かったのですが、
|
60
|
-
|
61
|
-
```python
|
62
|
-
|
63
|
-
"/user/test/<int:pk>/"
|
64
|
-
|
65
|
-
```
|
66
|
-
|
67
|
-
だと認識してくれないみたいなのですが、どう記述すれば良いでしょうか?
|