Posts by Gabriel Silva • 1 point
1 post
-
0
votes1
answer285
viewsA: how to insert object_list inside the select of the form in the Django 2.1 template
You could use Django’s Modelform, creating a class for Funcionario, and not have to go through these problems. class Funcionario(forms.ModelForm): class Meta: model = Funcionario fields = ['nome',…