{% extends "setup.html" %} {% block title %}Setup{% endblock %} {% block content %} {% if user_info.bundles_configured and not user_info.is_first_import_finished %}
×

That's it! Now the only thing left to do, once you've configured all your trunks is to import the current call information, assign a cost to each call, and begin calculating monthly costs for a faster access.

Now, let's do a test-run. This means we'll assign costs to each call, but won't save them to the database yet, so you can review the results and check that every tariff you need has already been configured.

Start Test-run!

{% endif %}
{% if configured %}

Configured Trunks

{% for prov in configured %} {% endfor %}
Name Tech Billing End Day Monthly cost ({{ user_info.currency_code }})
{{prov.name}} {{prov.provider_tech}} {{prov.period_end}} {{ user_info.currency_symbol }}{{prov.monthly_cost|floatformat:2}} Add Base Rates
{% if not user_info.trunks_configured %}
×

Here you can find all active trunks of your Elastix System. To start configuring one, just click on its name and enter the requested information.

When you're done configuring your trunks, click the button below to continue.

All trunks configured!

{% endif %}
Unconfigured Trunks
{% for prov in not_configured %} {% endfor %}
{{prov.asterisk_name}}
{% else %}

No trunks configured yet.

{% if not user_info.trunks_configured %}
×

Here you can find all active trunks of your Elastix System. To start configuring one, just click on its name and enter the requested information.

When you're done configuring your trunks, click the button below to continue.

All trunks configured!

{% endif %}
Unconfigured Trunks
{% for prov in not_configured %} {% endfor %}
{{prov.asterisk_name}}
{% endif %} {% if locales %}

Configured Rates

{% for prov in configured %}
{% for loc in locales%} {% if loc.provider == prov %} {% endif %} {% endfor %}
Trunk Destination Prefix Connection Fee Minute Fee Bundles?
{{loc.provider}} {{loc.destination_name.name}} {{loc.prefix}} {{ user_info.currency_symbol }}{{loc.connection_fee|floatformat:2}} {{ user_info.currency_code }} {{ user_info.currency_symbol }}{{loc.minute_fee|floatformat:2}} {{ user_info.currency_code }} {% if loc.has_bundles %} {% else %} {% endif %} Assign Bundles
{% endfor %}
{% if user_info.trunks_configured and not user_info.base_tariffs_configured %}
×

After configuring your trunks, assign base rates to each. That is, how much it costs for you to call each destination group (Local, National, Intl...)

When you're finished adding base rates to each of your configured trunks, click on the button below to continue.

All base rates configured!

{% endif %}
{% else %}

No base rates have been configured yet.

{% if user_info.trunks_configured and not user_info.base_tariffs_configured %}
×

After configuring your trunks, assign base rates to each. That is, how much it costs for you to call each destination group (Local, National, Intl...)

When you're finished adding base rates to each of your configured trunks, click on the button below to continue.

All base rates configured!

{% endif %}
{% endif %} {% if bundles%}

Configured Bundles

{% for bun in bundles %} {% endfor %}
Name Provider Destination Prefix Amount Cost ({{ user_info.currency_code }}) Apply priority
{{bun.name}} {{bun.destination_group.provider.name}} {{bun.destination_group.destination_name.name}} {{bun.destination_group.prefix}} {{bun.amount}} {{bun.tariff_mode.name}}s {{ user_info.currency_symbol }}{{bun.cost|floatformat:2}} {{bun.priority}}
{% if user_info.base_tariffs_configured and not user_info.bundles_configured %}
×

If one of your providers offers you phone bundles (e.g. A bundle which lets you make 200 calls to some specific destination, in exchange for a low monthly fee), you can add see them here.

To assign a bundle, select the destination group by clicking on the "Assign bundle" button from the list below belonging to the provider whose bundle you're using.

When you're done adding bundles, click the button below to continue.

Bundle configuration finished!

{% endif %}
{% else %}

No bundles have been configured yet.

{% if user_info.base_tariffs_configured and not user_info.bundles_configured %}
×

If one of your providers offers you phone bundles (e.g. A bundle which lets you make 200 calls to some specific destination, in exchange for a low monthly fee), you can add see them here.

To assign a bundle, select the destination group by clicking on the "Assign bundle" button from the list below belonging to the provider whose bundle you're using.

When you're done adding bundles, click the button below to continue.

Bundle configuration finished!

{% endif %}
{% endif %} {% endblock %}