Current File : //root/panel/modules/show_mysql_processes/module.zpm
<div class="zmodule_content panel" id="zmodule_header_<@ ModuleName @>">
    <div class="panel-heading">
        <img src="<@ ModuleIcon @>" width="35" height="35" border="0" alt="<@ ModuleName @>">

        <div class="zmodule_title">
            <@ ModuleName @>
        </div>
        <div class="zmodule_desc" id="zmodule_desc_<@ ModuleName @>"><@ ModuleDesc @></div>
    </div>
   
<style>
.helpicon {
display: block;
float: right;
border: 1px solid #ccc;
background-color: #f3f3f3;
padding: 5px 10px;
font-size: 12px;
margin-top:-121px;
margin-right:5px;
-webkit-box-shadow: -8px 7px 5px 0px rgba(204,204,204,1);
-moz-box-shadow: -8px 7px 5px 0px rgba(204,204,204,1);
box-shadow: -8px 7px 5px 0px rgba(204,204,204,1);
-webkit-box-shadow: 8px 7px 5px 0px rgba(204,204,204,1);
-moz-box-shadow: 8px 7px 5px 0px rgba(204,204,204,1);
box-shadow: 8px 7px 5px 0px rgba(204,204,204,1);
}

</style>
<div class="helpicon">
<a href="<@ helpicon @>" target="_blank"><img src="etc/styles/CstyleX-master/images/help.png" style="float:left;" ><span style="float:left;margin-top:8px;font-weight:bold;font-size:12px;" >Video Tutorial</span></a>
</div>
 
    <div class="zgrid_wrapper">
        <h2><: MYSQL Processes :></h2>
        <% if ProcessList %>
            <table class="table table-striped">
                <tr>
	
                    <th><: Id :></th>
                    <th><: User :></th>
                    <th><: Host :></th>
                    <th><: DB :></th>
                    <th><: Command :></th>
                    <th><: Time :></th>
                    <th><: State :></th>
                    <th><: Info :></th>
                </tr>
                <% loop ProcessList %>
                <tr>
					<td><& Id &></td>
					<td><& User &></td>
					<td><& Host &></td>
					<td><& db &></td>
					<td><& Command &></td>
					<td><& Time &></td>
					<td><& State &></td>
					<td><& Info &></td>
                </tr>
                <% endloop %>
            </table>
        <% else %>
        <: No process was running under your mysql :>
        <% endif %>
    </div>

</div>