{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% block title %}{% trans "Send out SMS" %}{% endblock %} {% block content %}

{% trans "Send out SMS" %}

{% if not has_client_secret %}
{% blocktrans trimmed %} You currently cannot send SMS in your events because Juvare Notify has not been configured yet. Please do so now (or ask your administrator for help): {% endblocktrans %} {% trans "Settings" %}
{% else %}
{% blocktrans trimmed %} Please note that SMS are always sent on a per-order basis, not per-recipient. SMS will only be sent if there is a phone number associated with the order. {% endblocktrans %}
{% csrf_token %}
{% trans "Settings" %} {% bootstrap_form_errors form %} {% bootstrap_field form.juvare_send_reminders layout='horizontal' %} {% bootstrap_field form.juvare_reminder_interval layout='horizontal' %} {% bootstrap_field form.juvare_reminder_text layout='horizontal' %}
{% trans "History" %}
    {% for reminder in sent_reminders %}
  • {{ reminder.updated|date:"SHORT_DATETIME_FORMAT" }} {% blocktrans trimmed with se=reminder.subevent %} Sent reminder for {{ se }} {% endblocktrans %}
  • {% empty %}
  • {% trans "No reminders have been sent yet." %}
  • {% endfor %}
{% endif %} {% endblock %}