mirror of https://github.com/apache/cloudstack.git
bug 7377: router page - add domain row.
This commit is contained in:
parent
a56e5ace88
commit
cd576af3be
|
|
@ -143,7 +143,19 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="grid_rows odd">
|
||||
<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">
|
||||
<%=t.t("Account")%>:</div>
|
||||
|
|
@ -153,7 +165,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid_rows even">
|
||||
<div class="grid_rows odd">
|
||||
<div class="grid_row_cell" style="width: 20%;">
|
||||
<div class="row_celltitles">
|
||||
<%=t.t("Created")%>:</div>
|
||||
|
|
|
|||
|
|
@ -104,6 +104,7 @@ function routerJsonToDetailsTab() {
|
|||
$thisTab.find("#guestipaddress").text(fromdb(jsonObj.guestipaddress));
|
||||
$thisTab.find("#hostname").text(fromdb(jsonObj.hostname));
|
||||
$thisTab.find("#networkdomain").text(fromdb(jsonObj.networkdomain));
|
||||
$thisTab.find("#domain").text(fromdb(jsonObj.domain));
|
||||
$thisTab.find("#account").text(fromdb(jsonObj.account));
|
||||
setDateField(jsonObj.created, $thisTab.find("#created"));
|
||||
|
||||
|
|
@ -146,6 +147,7 @@ function routerClearDetailsTab() {
|
|||
$thisTab.find("#guestipaddress").text("");
|
||||
$thisTab.find("#hostname").text("");
|
||||
$thisTab.find("#networkdomain").text("");
|
||||
$thisTab.find("#domain").text("");
|
||||
$thisTab.find("#account").text("");
|
||||
$thisTab.find("#created").text("");
|
||||
resetViewConsoleAction(null, $thisTab);
|
||||
|
|
|
|||
Loading…
Reference in New Issue