- {% call mapping_table(
- caption='Letter pricing',
- field_headings=['Country code', 'Country', 'Cost multipler'],
- field_headings_visible=True,
- caption_visible=False
- ) %}
- {% for cc, names, billable_units in international_sms_rates %}
- {% call row() %}
- {{ text_field('+' + cc) }}
- {% call field() %}
- {% for name in names %}
- {{ name }}
- {% endfor %}
+
+ {{ textbox(
+ search_form.search,
+ width='1-1',
+ label='Search by country name or code'
+ ) }}
+
+
+
+ {% call mapping_table(
+ caption='Letter pricing',
+ field_headings=['Country code', 'Country', 'Cost multipler'],
+ field_headings_visible=True,
+ caption_visible=False
+ ) %}
+ {% for cc, names, billable_units in international_sms_rates %}
+ {% call row() %}
+ {{ text_field('+' + cc) }}
+ {% call field() %}
+ {% for name in names %}
+ {{ name }}
+ {% endfor %}
+ {% endcall %}
+ {{ text_field('{} ×'.format(billable_units)|safe) }}
{% endcall %}
- {{ text_field('{} ×'.format(billable_units)|safe) }}
- {% endcall %}
- {% endfor %}
- {% endcall %}
-
+ {% endfor %}
+ {% endcall %}
+
+
+