-
Notifications
You must be signed in to change notification settings - Fork 231
/
Copy pathdeploy-image-dialog.html
53 lines (53 loc) · 1.79 KB
/
deploy-image-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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<pf-wizard
title="Deploy Image"
on-cancel="$ctrl.close()"
on-finish="$ctrl.close()"
hide-back-button="true"
hide-sidebar="true"
next-title="$ctrl.nextButtonTitle"
next-callback="$ctrl.nextCallback"
current-step="$ctrl.currentStep"
on-step-changed="$ctrl.stepChanged(step)"
step-class="order-service-wizard-step"
wizard-done="$ctrl.wizardDone">
<pf-wizard-step
step-title="Image"
step-id="image"
step-priority="1"
substeps="false"
ok-to-nav-away="true"
allow-click-nav="false"
next-enabled="$ctrl.deployForm.$valid || $ctrl.deployImageNewAppCreated">
<div class="wizard-pf-main-inner-shadow-covers">
<div class="order-service-config">
<div class="wizard-pf-main-form-contents">
<form name="$ctrl.deployForm">
<deploy-image is-dialog="true" project="$ctrl.project" context="$ctrl.context"></deploy-image>
</form>
</div>
</div>
</div>
</pf-wizard-step>
<pf-wizard-step
step-title="Results"
step-id="results"
step-priority="2"
substeps="false"
ok-to-nav-away="true"
allow-click-nav="false">
<div class="wizard-pf-main-inner-shadow-covers">
<div class="order-service-config">
<div class="wizard-pf-main-form-contents">
<next-steps project="$ctrl.selectedProject"
project-name="$ctrl.selectedProject.metadata.name"
login-base-url="$ctrl.loginBaseUrl"
on-continue="$ctrl.close"
show-project-name="$ctrl.showProjectName"
name="$ctrl.appName"
is-dialog="true">
</next-steps>
</div>
</div>
</div>
</pf-wizard-step>
</pf-wizard>