-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshow_save.html.erb
More file actions
85 lines (67 loc) · 1.07 KB
/
show_save.html.erb
File metadata and controls
85 lines (67 loc) · 1.07 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<p id="notice"><%= notice %></p>
<p>
<b>Host:</b>
<%= @cloud_server.host %>
</p>
<p>
<b>Hypervisor hostname:</b>
<%= @cloud_server.hypervisor_hostname %>
</p>
<p>
<b>Instance name:</b>
<%= @cloud_server.instance_name %>
</p>
<p>
<b>Power state:</b>
<%= @cloud_server.power_state %>
</p>
<p>
<b>Task state:</b>
<%= @cloud_server.task_state %>
</p>
<p>
<b>Vm state:</b>
<%= @cloud_server.vm_state %>
</p>
<p>
<b>Flavor:</b>
<%= @cloud_server.flavor %>
</p>
<p>
<b>Hostid:</b>
<%= @cloud_server.hostId %>
</p>
<p>
<b>Id:</b>
<%= @cloud_server.id %>
</p>
<p>
<b>Image:</b>
<%= @cloud_server.image %>
</p>
<p>
<b>Metadata:</b>
<%= @cloud_server.metadata %>
</p>
<p>
<b>Name:</b>
<%= @cloud_server.name %>
</p>
<p>
<b>Status:</b>
<%= @cloud_server.status %>
</p>
<p>
<b>Tenant:</b>
<%= @cloud_server.tenant_id %>
</p>
<p>
<b>User:</b>
<%= @cloud_server.user_id %>
</p>
<p>
<b>Vmnet:</b>
<%= @cloud_server.vmnet %>
</p>
<%= link_to 'Edit', edit_cloud_server_path(@cloud_server) %> |
<%= link_to 'Back', cloud_servers_path %>