International Phone Number Widget in Django Model Form

I am trying to include International code for the phone number, so users like easily select the country code from the drop down menu. I am following this example https://www.youtube.com/watch?v=Q5UPMEA5fX0 , but getting MultiWidget error. Here is how my ModelForm looks.

enter image description here

enter image description here

Here is what the error looks like. It says I am missing 'widgets' argument. I am not able to find any examples online. Any help would be appreciated. enter image description here

Back to Top