Answers for "call fields of another model in modelform django forms"

6

django model form

class YourForm(ModelForm):
	class Meta:
    	model = YourModel
    	fields = ['pub_date', 'headline', 'content', 'reporter']
Posted by: Guest on October-07-2020

Code answers related to "call fields of another model in modelform django forms"

Python Answers by Framework

Browse Popular Code Answers by Language