{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Send Survey to Phone Number" %} - PX360{% endblock %} {% block content %}

{% trans "Send Survey Manually" %}

{% trans "Select a survey template and send it to a recipient" %}

{% trans "Back to Surveys" %}
{% trans "Search Existing" %} {% trans "Enter Phone" %} {% trans "Upload CSV" %}

{% trans "Phone Number Details" %}

{% csrf_token %}
{% if form.survey_template.errors %}
{% for error in form.survey_template.errors %}{{ error }}{% endfor %}
{% endif %}
{% if form.phone_number.errors %}
{% for error in form.phone_number.errors %}{{ error }}{% endfor %}
{% endif %}

{% trans "Enter the phone number in international format with country code (e.g., +966501234567)" %}

{% if form.recipient_name.errors %}
{% for error in form.recipient_name.errors %}{{ error }}{% endfor %}
{% endif %}
{% if form.custom_message.errors %}
{% for error in form.custom_message.errors %}{{ error }}{% endfor %}
{% endif %}

{% trans "Add a personalized message to the survey invitation" %}

{% trans "How it works" %}

{% trans "The survey will be sent via SMS to the phone number you enter. The recipient does not need to be in the system. They will receive a unique link to complete the survey." %}

{% trans "Cancel" %}
{% endblock %}