Add phone ext

This commit is contained in:
leigh-mil
2018-10-29 14:01:16 -04:00
parent 9992ed44b6
commit 6bc157b2b3
16 changed files with 82 additions and 5 deletions

View File

@@ -112,7 +112,12 @@
<h3 class='approval-log__log-item__header'>Mission Owner approval on behalf of:</h3>
<span>{{ review.full_name_mao }}</span>
<span>{{ review.email_mao }}</span>
<span>{{ review.phone_mao }}</span>
<span>
{{ review.phone_mao }}
{% if review.phone_ext_mao %}
ext. {{ review.phone_ext_mao }}
{% endif %}
</span>
</div>
{% endif %}
@@ -202,9 +207,13 @@
{{ TextInput(review_form.email_mao, placeholder="name@mail.mil", validation='email') }}
</div>
<div class='form-col form-col--half'>
<div class='form-col form-col--third'>
{{ TextInput(review_form.phone_mao, placeholder="(123) 456-7890", validation='usPhone') }}
</div>
<div class='form-col form-col--sixth'>
{{ TextInput(review_form.phone_ext_mao)}}
</div>
</div>
<hr />