You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sirona.apache.org by rm...@apache.org on 2013/11/03 21:40:45 UTC

svn commit: r1538443 - /incubator/sirona/trunk/reporting/src/main/resources/templates/jvm/jvm.vm

Author: rmannibucau
Date: Sun Nov  3 20:40:45 2013
New Revision: 1538443

URL: http://svn.apache.org/r1538443
Log:
oops wrong block to hide in collector mode

Modified:
    incubator/sirona/trunk/reporting/src/main/resources/templates/jvm/jvm.vm

Modified: incubator/sirona/trunk/reporting/src/main/resources/templates/jvm/jvm.vm
URL: http://svn.apache.org/viewvc/incubator/sirona/trunk/reporting/src/main/resources/templates/jvm/jvm.vm?rev=1538443&r1=1538442&r2=1538443&view=diff
==============================================================================
--- incubator/sirona/trunk/reporting/src/main/resources/templates/jvm/jvm.vm (original)
+++ incubator/sirona/trunk/reporting/src/main/resources/templates/jvm/jvm.vm Sun Nov  3 20:40:45 2013
@@ -19,13 +19,13 @@
         <div class="col-lg-6">
             #graphBlock("CPU", "cpu")
 
+            #if ($name)
             <div class="panel panel-primary">
                 <div class="panel-heading">
                     <h3 class="panel-title">
                         <i class="icon-table"></i>Computer Info
                     </h3>
                 </div>
-                #if ($name)
                 <div class="panel-body">
                     <table id="cpu-table" class="table table-bordered table-striped table-hover">
                         <tbody>
@@ -36,19 +36,19 @@
                         </tbody>
                     </table>
                 </div>
-                #end
             </div>
+            #end
         </div>
         <div class="col-lg-6">
             #graphBlock("Used Memory", "memory")
 
+            #if ($initMemory)
             <div class="panel panel-primary">
                 <div class="panel-heading">
                     <h3 class="panel-title">
                         <i class="icon-table"></i>Memory Status
                     </h3>
                 </div>
-                #if ($initMemory)
                 <div class="panel-body">
                     <table id="memory-table" class="table table-bordered table-striped table-hover">
                         <tbody>
@@ -57,8 +57,8 @@
                         </tbody>
                     </table>
                 </div>
-                #end
             </div>
+            #end
         </div>
     </div>
 </div>