質問編集履歴
1
コードを付け加えた
test
CHANGED
File without changes
|
test
CHANGED
@@ -3,6 +3,18 @@
|
|
3
3
|
入門書のforms.pyのプログラムで、
|
4
4
|
|
5
5
|
```Python
|
6
|
+
|
7
|
+
class InquiryForm(forms.Form):
|
8
|
+
|
9
|
+
name = forms.CharField(label='お名前', max_length=30)
|
10
|
+
|
11
|
+
email = forms.EmailField(label='メールアドレス')
|
12
|
+
|
13
|
+
title = forms.CharField(label='タイトル', max_length=30)
|
14
|
+
|
15
|
+
message = forms.CharField(label='メッセージ', widget=forms.Textarea)
|
16
|
+
|
17
|
+
|
6
18
|
|
7
19
|
def __init__(self, *args, **kwargs):
|
8
20
|
|