mirror of https://github.com/apache/cloudstack.git
bug 5846: added domain to router details
This commit is contained in:
parent
bd5f1a7de6
commit
ddfbfc1048
|
|
@ -1053,6 +1053,16 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid_rows even">
|
||||
<div class="grid_row_cell" style="width: 20%;">
|
||||
<div class="row_celltitles">
|
||||
<%=t.t("Domain")%>:</div>
|
||||
</div>
|
||||
<div class="grid_row_cell" style="width: 79%;">
|
||||
<div class="row_celltitles" id="domain">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid_rows even">
|
||||
<div class="grid_row_cell" style="width: 20%;">
|
||||
<div class="row_celltitles">
|
||||
|
|
|
|||
|
|
@ -1636,7 +1636,8 @@ function vmRouterJSONToTemplate(jsonObj, $template) {
|
|||
$template.find("#guestipaddress").text(fromdb(jsonObj.guestipaddress));
|
||||
$template.find("#hostname").text(fromdb(jsonObj.hostname));
|
||||
$template.find("#networkdomain").text(fromdb(jsonObj.networkdomain));
|
||||
$template.find("#account").text(fromdb(jsonObj.account));
|
||||
$template.find("#account").text(fromdb(jsonObj.account));
|
||||
$template.find("#domain").text(fromdb(jsonObj.domain));
|
||||
setDateField(jsonObj.created, $template.find("#created"));
|
||||
|
||||
//***** actions (begin) *****
|
||||
|
|
|
|||
Loading…
Reference in New Issue