2023-06-30 12:24:50 +00:00
|
|
|
<div id="shapes"></div>
|
|
|
|
<vn-dialog
|
|
|
|
vn-id="supportDialog"
|
|
|
|
on-accept="$ctrl.sendToSupport()">
|
|
|
|
<tpl-body>
|
|
|
|
<section>
|
|
|
|
<h5 class="vn-py-sm" translate>Open CAU</h5>
|
|
|
|
<vn-horizontal>
|
|
|
|
<vn-textfield
|
|
|
|
vn-one
|
|
|
|
label="Subject"
|
|
|
|
ng-model="supportDialog.subject"
|
|
|
|
required="true">
|
|
|
|
</vn-textfield>
|
|
|
|
</vn-horizontal>
|
|
|
|
<vn-horizontal>
|
|
|
|
<vn-textarea vn-one
|
|
|
|
label="Reason"
|
|
|
|
ng-model="supportDialog.reason"
|
|
|
|
rows="2"
|
|
|
|
required="true">
|
|
|
|
</vn-textarea>
|
|
|
|
</vn-horizontal>
|
|
|
|
<vn-horizontal>
|
|
|
|
<span>
|
|
|
|
{{'Este cau contiene más información relevante para el equipo de informática' | translate}}:
|
|
|
|
</span>
|
|
|
|
</vn-horizontal>
|
|
|
|
</section>
|
|
|
|
</tpl-body>
|
|
|
|
<tpl-buttons>
|
|
|
|
<input type="button" response="cancel" translate-attr="{value: 'Cancel'}"/>
|
|
|
|
<button response="accept" translate>Send</button>
|
|
|
|
</tpl-buttons>
|
|
|
|
</vn-dialog>
|