mirror of https://github.com/apache/cloudstack.git
new UI - dashboad of user - implement Public IPs section.
This commit is contained in:
parent
c7790d73ff
commit
58a850c374
|
|
@ -327,7 +327,7 @@
|
|||
</div>
|
||||
<div class="grid_row_cell" style="width: 59%; border: none;">
|
||||
<div class="row_celltitles">
|
||||
<strong>Unlimited</strong></div>
|
||||
<strong id="db_available_public_ips"></strong></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid_rows odd" style="width: 50%;">
|
||||
|
|
@ -338,7 +338,7 @@
|
|||
</div>
|
||||
<div class="grid_row_cell" style="width: 59%; border: none;">
|
||||
<div class="row_celltitles">
|
||||
<strong>5</strong></div>
|
||||
<strong id="db_owned_public_ips"></strong></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -240,9 +240,9 @@ function afterLoadDashboardJSP() {
|
|||
rec = Math.round(rec / 1024);
|
||||
$("#db_sent").text(sent + "KB");
|
||||
$("#db_received").text(rec + "KB");
|
||||
$("#db_available_public_ips").text(statJSON.ipavailable);
|
||||
$("#db_owned_public_ips").text(statJSON.iptotal);
|
||||
*/
|
||||
$("#db_available_public_ips").text(statJSON.ipavailable);
|
||||
$("#db_owned_public_ips").text(statJSON.iptotal);
|
||||
$("#db_running_vms").text(statJSON.vmrunning);
|
||||
$("#db_stopped_vms").text(statJSON.vmstopped);
|
||||
$("#db_total_vms").text(statJSON.vmtotal);
|
||||
|
|
|
|||
Loading…
Reference in New Issue