You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
399 B

from django import forms
from .models import Review
class ReviewForm(forms.ModelForm):
class Meta:
model = Review
fields = (
'type',
'text',
'project',
'from_customer',
'target_contractor',
'target_team',
'from_contractor',
'target_customer',
'from_team',
)