2019-03-29 06:29:09 +00:00
|
|
|
<vn-dialog
|
|
|
|
vn-id="SMSDialog"
|
2019-10-30 15:57:14 +00:00
|
|
|
on-response="$ctrl.onResponse($response)">
|
2019-03-29 06:29:09 +00:00
|
|
|
<tpl-body>
|
2019-10-04 22:16:57 +00:00
|
|
|
<h5 class="vn-py-sm" translate>Send SMS</h5>
|
2019-03-29 06:29:09 +00:00
|
|
|
<vn-horizontal>
|
2019-10-09 22:47:29 +00:00
|
|
|
<vn-textfield
|
|
|
|
vn-one
|
2019-04-16 05:59:12 +00:00
|
|
|
label="Destination"
|
2019-10-09 22:47:29 +00:00
|
|
|
ng-model="$ctrl.sms.destination">
|
2019-03-29 06:29:09 +00:00
|
|
|
</vn-textfield>
|
|
|
|
</vn-horizontal>
|
|
|
|
<vn-horizontal >
|
2019-10-09 22:47:29 +00:00
|
|
|
<vn-textarea
|
|
|
|
vn-one
|
2019-03-29 06:29:09 +00:00
|
|
|
label="Message"
|
2019-10-09 22:47:29 +00:00
|
|
|
ng-model="$ctrl.sms.message"
|
|
|
|
rule>
|
2019-03-29 06:29:09 +00:00
|
|
|
</vn-textarea>
|
|
|
|
</vn-horizontal>
|
|
|
|
</tpl-body>
|
|
|
|
<tpl-buttons>
|
2019-10-30 15:57:14 +00:00
|
|
|
<input type="button" response="cancel" translate-attr="{value: 'Cancel'}"/>
|
|
|
|
<button response="accept" translate>Send</button>
|
2019-03-29 06:29:09 +00:00
|
|
|
</tpl-buttons>
|
|
|
|
</vn-dialog>
|