{% extends "base.html" %} {% load humanize static hc_extras %} {% block title %}Add Phone Call Integration - {{ site_name }}{% endblock %} {% block content %}

Phone Call

Get a phone call when a check goes down. When you pick up the call, a text-to-speech engine will read out a message and then hang up.

{% if show_pricing and profile.call_limit == 0 %}

Paid plan required. Phone call notifications are not available on the free plan–they cost too much! Please upgrade to a paid plan to enable phone call notifications.

{% endif %}

Integration Settings

{% csrf_token %}
{% if form.label.errors %}
{{ form.label.errors|join:"" }}
{% else %} Optional. If you add multiple phone numbers, the labels will help you tell them apart. {% endif %}
{% if form.phone.errors %}
{{ form.phone.errors|join:"" }}
{% else %} Make sure the phone number starts with "+" and has the country code. {% endif %}
{% endblock %}