12 lines
283 B
Python
12 lines
283 B
Python
from django import forms
|
|
from .models import Comment
|
|
|
|
|
|
class CommentForm(forms.ModelForm):
|
|
class Meta:
|
|
model = Comment
|
|
fields = ["text"]
|
|
widgets = {
|
|
"text": forms.Textarea(attrs={"rows": 3, "placeholder": "Kommentar schreiben..."}),
|
|
}
|