VeryApt / django-phone-field

Lightweight model and form field for phone numbers in Django
GNU General Public License v3.0
52 stars 13 forks source link

how to disable the extension part from a phone field? #17

Open engragy opened 3 years ago

engragy commented 3 years ago

is there a way for the phone field in the forms to show only an input for phone without extension .

va-andrew commented 3 years ago

I would recommend doing this with CSS:

.phone-field-ext, .phone-field-ext+input {
  display: none;
}