mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-09 00:43:11 -04:00
Document +882 numbers are not supported
These are "countryless" phone numbers used by e.g. satellite phone
providers [^1]. We decided not to support them for now because:
- The use case is low: only one service is asking for this prefix.
- MMG will charge at 4x for them but apparently they cost more.
We can't put this "negative" data in the usual place [^2] because
this would _enable_ sending via this number. Until we have more
cases like this it's easiest to just tack on this fake info.
[^1]: https://en.wikipedia.org/wiki/International_Networks_(country_code)
[^2]: ca2506c6a6/notifications_utils/recipients.py (L569)
This commit is contained in:
@@ -197,7 +197,7 @@
|
|||||||
|
|
||||||
<div id="international-pricing" class="bottom-gutter-3-2">
|
<div id="international-pricing" class="bottom-gutter-3-2">
|
||||||
{% call mapping_table(
|
{% call mapping_table(
|
||||||
caption='Letter pricing',
|
caption='International text message rates',
|
||||||
field_headings=['Country code', 'Country', 'Cost multiplier'],
|
field_headings=['Country code', 'Country', 'Cost multiplier'],
|
||||||
field_headings_visible=True,
|
field_headings_visible=True,
|
||||||
caption_visible=False
|
caption_visible=False
|
||||||
@@ -213,10 +213,16 @@
|
|||||||
{{ text_field('{} ×'.format(billable_units)|safe) }}
|
{{ text_field('{} ×'.format(billable_units)|safe) }}
|
||||||
{% endcall %}
|
{% endcall %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
{% call row() %}
|
||||||
|
{{ text_field('+882') }}
|
||||||
|
{% call field() %}Worldwide{% endcall %}
|
||||||
|
{{ text_field('Not supported') }}
|
||||||
|
{% endcall %}
|
||||||
{% endcall %}
|
{% endcall %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% endset %}
|
{% endset %}
|
||||||
|
|
||||||
{{ govukDetails({
|
{{ govukDetails({
|
||||||
"summaryText": "International text message rates",
|
"summaryText": "International text message rates",
|
||||||
"html": smsIntRates
|
"html": smsIntRates
|
||||||
|
|||||||
Reference in New Issue
Block a user