![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/app/bundles/SmsBundle/Resources/views/Sms/ |
{% extends '@MauticCore/FormTheme/form_simple.html.twig' %} {% form_theme form with [ '@MauticSms/FormTheme/SmsSendList/smssend_list_row.html.twig' ] %} {% block mauticContent %}sms{% endblock %} {# @var sms \Mautic\SmsBundle\Entity\Sms #} {% set type = sms.getSmsType() %} {% set isExisting = sms.getId() %} {% set translationBase = 'mautic.sms' %} {% set mauticContent = 'sms' %} {% block primaryFormContent %} <div class="row"> <div class="col-md-6"> {{ form_row(form.name) }} </div> </div> <div class="row"> <div class="col-md-12"> <div class="characters-count"> <label class="control-label" for="" data-toggle="tooltip" data-container="body" data-placement="top" title="" data-original-title="{{ 'mautic.sms.form.nbcharacter.infobox'|trans }}"> {{ 'mautic.sms.form.nbcharacter.counter'|trans }} <span class="label label-default" id="sms_nb_char">0</span> </label> </div> {{ form_row(form.message) }} <i class="text-muted">{{ 'mautic.sms.token.dropdown.hint'|trans|purify }}</i> </div> </div> {% endblock %} {% block rightFormContent %} {{ form_row(form.category) }} {{ form_row(form.language) }} {{ form_row(form.isPublished) }} <div id="leadList"{% if 'template' == type %} class="hide"{% endif %}> {{ form_row(form.lists) }} {{ form_row(form.publishUp) }} {{ form_row(form.publishDown) }} </div> <div class="hide"> {{ form_rest(form) }} </div> {% if (updateSelect is not defined or updateSelect is empty) and not isExisting and not formContainsErrors(form) or type is empty %} {{- include('@MauticCore/Helper/form_selecttype.html.twig', { 'item' : sms, 'mauticLang' : { 'newListSms' : 'mautic.sms.type.list.header', 'newTemplateSms' : 'mautic.sms.type.template.header', }, 'typePrefix' : 'sms', 'cancelUrl' : 'mautic_sms_index', 'header' : 'mautic.sms.type.header', 'typeOneHeader' : 'mautic.sms.type.template.header', 'typeOneIconClass' : 'ri-message-3-fill', 'typeOneDescription' : 'mautic.sms.type.template.description', 'typeOneDifferences' : '', 'typeOneOnClick' : "Mautic.selectSmsType('template');", 'typeTwoHeader' : 'mautic.sms.type.list.header', 'typeTwoIconClass' : 'ri-pie-chart-fill', 'typeTwoDescription' : 'mautic.sms.type.list.description', 'typeTwoDifferences' : '', 'typeTwoOnClick' : "Mautic.selectSmsType('list');", } ) -}} {% endif %} {% endblock %}