Re: Filter a field in a form CreatView

2020-10-29 Thread Walter Randazzo
Hi David, Thanks so much for your reply. Im checking the videos at the google search. So hopefully I'l develop a combobox with that. Thanks so much sir! El jue., 29 oct. 2020 a las 1:24, David Nugent () escribió: > This is known as a "combo box", somewhat different to a select. > > Check thi

Re: Filter a field in a form CreatView

2020-10-28 Thread David Nugent
This is known as a "combo box", somewhat different to a select. Check this google search: html5 combo box django

Filter a field in a form CreatView

2020-10-28 Thread Walter Randazzo
Hi guys, How r u doing? I have a field called articulos that is foreign key, in a form is defined as follow: *forms.py* from django import forms #from django.contrib.auth.models import User from .models import Stockmov class StockmovForm(forms.ModelForm): class Meta: model = Stockm