回答編集履歴

2

修正

2020/07/31 04:39

投稿

ForestSeo
ForestSeo

スコア2722

test CHANGED
@@ -44,4 +44,4 @@
44
44
 
45
45
 
46
46
 
47
- `id="{{forloop.counter}}"`にして、formを1回目のnameは1、2回目のnameは2 とする。
47
+ `name="{{forloop.counter}}"`にして、formを1回目のnameは1、2回目のnameは2 とする。

1

修正

2020/07/31 04:39

投稿

ForestSeo
ForestSeo

スコア2722

test CHANGED
@@ -16,7 +16,7 @@
16
16
 
17
17
  {% for item in data %}
18
18
 
19
- <form action="{% url 'sendmail:index' %}" method="POST" id="{{forloop.counter}}">
19
+ <form action="{% url 'sendmail:index' %}" method="POST" name="{{forloop.counter}}">
20
20
 
21
21
  <tr>
22
22
 
@@ -38,4 +38,10 @@
38
38
 
39
39
  </table>
40
40
 
41
+ ```
42
+
43
+ > 同じname属性をもつformは一番最後の値が適用されるらしいのでうまくいきませんでした。
44
+
45
+
46
+
41
- ````id="{{forloop.counter}}"`にして、formを1回目のidは1、2回目のidは2 とする。
47
+ `id="{{forloop.counter}}"`にして、formを1回目のnameは1、2回目のnameは2 とする。