8 строки
132 B
Python
8 строки
132 B
Python
|
from django import forms
|
||
|
|
||
|
import happyforms
|
||
|
|
||
|
|
||
|
class ContactForm(happyforms.Form):
|
||
|
text = forms.CharField(widget=forms.Textarea)
|