[Answered ]-What widget we give to URLFIELD in django

1👍

As the documentation on a URLField says [Django-doc]:

You thus can use a URLInput widget [Django-doc] for that:

link = forms.URLField(widget=forms.URLInput())

Leave a comment