CRM-15856 - crmMailingAB - Update date-time widgets
[civicrm-core.git] / partials / crmMailingAB / selectWinner.html
CommitLineData
32b8b0bf
TO
1<div ng-controller="CrmMailingABWinnerDialogCtrl">
2 <form novalidate name="winnerForm">
3 <div id="help">
4 {{ts('After selecting %1 as the winner, one must schedule the delivery for the final mailing.', {1: mailingTitle})}}
5 </div>
6
f8c5a8d6 7 <div crm-mailing-radio-date="schedule" ng-model="abtest.mailings.c.scheduled_date">
32b8b0bf
TO
8 <div>
9 <input ng-model="schedule.mode" type="radio" name="send" value="now" id="schedule-send-now"/>
10 <label for="schedule-send-now">{{ts('Send final mailing immediately')}}</label>
11 </div>
12 <div>
13 <input ng-model="schedule.mode" type="radio" name="send" value="at" id="schedule-send-at"/>
14 <label for="schedule-send-at">{{ts('Send final mailing at:')}}</label>
f8c5a8d6 15 <span crm-ui-date-time ng-model="schedule.datetime"></span>
32b8b0bf
TO
16 </div>
17 </div>
18 </form>
19</div>