Remove as national

This commit is contained in:
zandercymatics 2024-06-03 11:18:42 -06:00
parent 259aa7ccc9
commit 3f9ffd332d
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
3 changed files with 3 additions and 2 deletions

View file

@ -68,7 +68,7 @@
{% with show_edit_button=True show_readonly=True group_classes="usa-form-editable padding-top-2" %}
{% with add_class="usa-input--medium" %}
{% input_with_errors form.phone.as_national %}
{% input_with_errors form.phone %}
{% endwith %}
{% endwith %}

View file

@ -42,7 +42,7 @@
{% endwith %}
{% with add_class="usa-input--medium" %}
{% input_with_errors form.phone.as_national %}
{% input_with_errors form.phone %}
{% endwith %}
<button type="submit" class="usa-button">Save</button>

View file

@ -4,6 +4,7 @@
from enum import Enum
import logging
from urllib.parse import quote
from django.contrib import messages