回答編集履歴
1
修正
test
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
```Python
|
2
|
+
|
3
|
+
# views.py
|
2
4
|
|
3
5
|
def trans_request_edit(request, PK):
|
4
6
|
|
@@ -12,6 +14,8 @@
|
|
12
14
|
|
13
15
|
```HTML
|
14
16
|
|
17
|
+
<!-- trans_request_edit.html -->
|
18
|
+
|
15
19
|
<form action="{% url 'trans_request_edit' PK %}" method="POST">
|
16
20
|
|
17
21
|
```にしたらいけますか?
|