-
Notifications
You must be signed in to change notification settings - Fork 231
/
Copy pathprocess-template-dialog.html
29 lines (29 loc) · 1.14 KB
/
process-template-dialog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<div class="order-service">
<pf-wizard
title="{{!$ctrl.useProjectTemplate && ($ctrl.template | displayName) || 'Select from Project'}}"
hide-sidebar="true"
hide-back-button="!$ctrl.useProjectTemplate"
step-class="order-service-wizard-step"
wizard-ready="$ctrl.wizardReady"
next-title="$ctrl.nextTitle"
next-callback="$ctrl.next"
on-finish="$ctrl.close()"
on-cancel="$ctrl.close()"
wizard-done="$ctrl.wizardDone"
current-step="$ctrl.currentStep"
ng-class="{'pf-wizard-no-back': !$ctrl.useProjectTemplate}">
<pf-wizard-step ng-repeat="step in $ctrl.steps track by step.id"
step-title="{{step.label}}"
wz-disabled="{{step.hidden}}"
allow-click-nav="step.allowClickNav"
next-enabled="step.valid"
prev-enabled="step.prevEnabled"
on-show="step.onShow"
step-id="{{step.id}}"
step-priority="{{$index}}">
<div class="wizard-pf-main-inner-shadow-covers">
<div ng-if="step.selected" ng-include="step.view" class="wizard-pf-main-form-contents"></div>
</div>
</pf-wizard-step>
</pf-wizard>
</div>