{% extends "setup.html" %} {% block title %}Add rate to {{provider.name}}{% endblock %} {% block page-title %}
  • Add base rate to provider {{provider.name}}
  • {% endblock %} {% block content %}
    {% csrf_token %} {{ form.non_field_errors }}
    {{ form.destination_name.errors }}
    {{ form.destination_name }}
    {{ form.destination_country.errors }}
    {{ form.destination_country }}
    {{ form.prefix.errors }} {{ form.provider.errors }}
    {{ form.prefix }}
    {{ form.minute_fee.errors }}
    {{ user_info.currency_symbol }} {{ form.minute_fee }} {{ user_info.currency_code }}
    {{ form.billing_interval.errors }}
    {{ form.billing_interval }} seconds
    {{ form.connection_fee.errors }}
    {{ user_info.currency_symbol }} {{ form.connection_fee }} {{ user_info.currency_code }}
    {{ form.notes.errors }}
    {{ form.notes }}
    {{ form.provider }} {{ form.destination_group_id }}
    Cancel

    Rates configured


    {% for dest in destinations %} {% endfor %}
    Destination Prefix Connection Fee Minute Fee
    {{ dest.destination_name.name }} {% if dest.prefix = "" %} Default {% else %} {{ dest.prefix }} {% endif %} {{ user_info.currency_symbol }}{{ dest.connection_fee }} {{ user_info.currency_code }} {{ user_info.currency_symbol }}{{ dest.minute_fee }} {{ user_info.currency_code }}
    {% endblock %} {% block js %} {{ block.super }} {% endblock %}