16 lines
390 B
Python
16 lines
390 B
Python
![]() |
from django import forms
|
||
|
from .models import Report
|
||
|
from django.utils.translation import gettext_lazy as _
|
||
|
|
||
|
|
||
|
class ReportForm(forms.ModelForm):
|
||
|
class Meta:
|
||
|
model = Report
|
||
|
fields = [
|
||
|
'reported_user',
|
||
|
'image',
|
||
|
'message',
|
||
|
]
|
||
|
widgets = {
|
||
|
'message': forms.Textarea(attrs={'placeholder': _("详情")}),
|
||
|
}
|