Merge pull request #17203 from artfulrobot/artfulrobot-cleanup-job-improvements
[civicrm-core.git] / ang / crmMailingAB / WinnerDialogCtrl.html
1 <div ng-controller="CrmMailingABWinnerDialogCtrl">
2 <form novalidate name="winnerForm">
3 <div class="help">
4 {{ts('After selecting %1 as the winner, one must schedule the delivery for the final mailing.', {1: mailingTitle})}}
5 </div>
6
7 <div crm-mailing-radio-date="schedule" ng-model="abtest.mailings.c.scheduled_date">
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>
15 <input crm-ui-datepicker ng-model="schedule.datetime"/>
16 </div>
17 </div>
18 </form>
19 </div>