salix/modules/client/front/sms/index.html

45 lines
1.7 KiB
HTML
Raw Normal View History

<vn-dialog
vn-id="SMSDialog"
2019-10-30 15:57:14 +00:00
on-response="$ctrl.onResponse($response)">
<tpl-body>
2020-01-09 12:58:50 +00:00
<section class="SMSDialog">
<h5 class="vn-py-sm" translate>Send SMS</h5>
<vn-horizontal>
<vn-textfield
vn-one
label="Destination"
2020-02-10 12:22:43 +00:00
ng-model="$ctrl.sms.destination"
required="true"
rule>
2020-01-09 12:58:50 +00:00
</vn-textfield>
</vn-horizontal>
2020-02-14 11:01:17 +00:00
<vn-horizontal>
2020-01-09 12:58:50 +00:00
<vn-textarea vn-one
2020-01-14 08:10:54 +00:00
vn-id="message"
2020-01-09 12:58:50 +00:00
label="Message"
ng-model="$ctrl.sms.message"
2020-02-14 11:01:17 +00:00
info="Special characters like accents counts as a multiple"
2020-01-09 12:58:50 +00:00
rows="5"
2020-02-10 12:22:43 +00:00
required="true"
2020-01-09 12:58:50 +00:00
rule>
</vn-textarea>
</vn-horizontal>
2020-01-14 08:10:54 +00:00
<vn-horizontal>
<span>
2020-02-14 11:01:17 +00:00
{{'Characters remaining' | translate}}:
<vn-chip translate-attr="{title: 'Packing'}" ng-class="{
'colored': $ctrl.charactersRemaining() > 25,
'warning': $ctrl.charactersRemaining() <= 25,
'alert': $ctrl.charactersRemaining() < 0,
}">
{{$ctrl.charactersRemaining()}}
</vn-chip>
2020-01-14 08:10:54 +00:00
</span>
</vn-horizontal>
2020-01-09 12:58:50 +00:00
</section>
</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>
</tpl-buttons>
</vn-dialog>