Organizing the tables

This commit is contained in:
Patrick McDonagh
2016-03-03 17:06:46 -06:00
parent 52a00aa99a
commit eeca94ff76

View File

@@ -3,14 +3,201 @@
<button class='btn btn-theme btn-block set_channel_btn' value='Save'>APPLY CHANGES</button> <button class='btn btn-theme btn-block set_channel_btn' value='Save'>APPLY CHANGES</button>
<br /> <br />
<div class="text-center"><h1>VFD CONFIGURATION</h1></div> <div class="text-center"><h1>VFD CONFIGURATION</h1></div>
<div class="row">
<div class='col-xs-12 text-center box-me'>
<table class="table">
<tbody>
<tr>
<td><h2>Motor Speed Reference (Hz)</h2></td>
<td>
<input class="form-control" data-channelId='<%= channels["vfdipp.vfdspeedref"].channelId %>'
data-techName='<%=channels["vfdipp.vfdspeedref"].techName %>'
data-name='<%= channels["vfdipp.vfdspeedref"].name %>'
data-val="<%=channels["vfdipp.vfdspeedref"].value %>"
type="number" step="any"
id="<%= channels["vfdipp.vfdspeedref"].channelId %>"
value="<%=channels["vfdipp.vfdspeedref"].value %>">
</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-6 box-me">
<h2>MOTOR NAMEPLATE DATA</h2>
<table class="table">
<tbody>
<tr>
<td>Motor FLA (A)</td>
<td>
<input class="form-control" data-channelId='<%= channels["vfdipp.vfdnameplatefla"].channelId %>'
data-techName='<%=channels["vfdipp.vfdnameplatefla"].techName %>'
data-name='<%= channels["vfdipp.vfdnameplatefla"].name %>'
data-val="<%=channels["vfdipp.vfdnameplatefla"].value %>"
type="number" step="any"
id="<%= channels["vfdipp.vfdnameplatefla"].channelId %>"
value="<%=channels["vfdipp.vfdnameplatefla"].value %>">
</td>
</tr>
<tr>
<td>Motor HP (HP)</td>
<td>
<input class="form-control" data-channelId='<%= channels["vfdipp.vfdnameplatehp"].channelId %>'
data-techName='<%=channels["vfdipp.vfdnameplatehp"].techName %>'
data-name='<%= channels["vfdipp.vfdnameplatehp"].name %>'
data-val="<%=channels["vfdipp.vfdnameplatehp"].value %>"
type="number" step="any"
id="<%= channels["vfdipp.vfdnameplatehp"].channelId %>"
value="<%=channels["vfdipp.vfdnameplatehp"].value %>">
</td>
</tr>
<tr>
<td>Motor RPM (RPM)</td>
<td>
<input class="form-control" data-channelId='<%= channels["vfdipp.vfdnameplaterpm"].channelId %>'
data-techName='<%=channels["vfdipp.vfdnameplaterpm"].techName %>'
data-name='<%= channels["vfdipp.vfdnameplaterpm"].name %>'
data-val="<%=channels["vfdipp.vfdnameplaterpm"].value %>"
type="number" step="any"
id="<%= channels["vfdipp.vfdnameplaterpm"].channelId %>"
value="<%=channels["vfdipp.vfdnameplaterpm"].value %>">
</td>
</tr>
<tr>
<td>Motor Frequency (Hz)</td>
<td>
<input class="form-control" data-channelId='<%= channels["vfdipp.vfdnameplatehz"].channelId %>'
data-techName='<%=channels["vfdipp.vfdnameplatehz"].techName %>'
data-name='<%= channels["vfdipp.vfdnameplatehz"].name %>'
data-val="<%=channels["vfdipp.vfdnameplatehz"].value %>"
type="number" step="any"
id="<%= channels["vfdipp.vfdnameplatehz"].channelId %>"
value="<%=channels["vfdipp.vfdnameplatehz"].value %>">
</td>
</tr>
<tr>
<td>Motor Overload Current (A)</td>
<td>
<input class="form-control" data-channelId='<%= channels["vfdipp.vfdnameplateolcurrent"].channelId %>'
data-techName='<%=channels["vfdipp.vfdnameplateolcurrent"].techName %>'
data-name='<%= channels["vfdipp.vfdnameplateolcurrent"].name %>'
data-val="<%=channels["vfdipp.vfdnameplateolcurrent"].value %>"
type="number" step="any"
id="<%= channels["vfdipp.vfdnameplateolcurrent"].channelId %>"
value="<%=channels["vfdipp.vfdnameplateolcurrent"].value %>">
</td>
</tr>
<tr>
<td>Motor Volts (V)</td>
<td>
<input class="form-control" data-channelId='<%= channels["vfdipp.vfdnameplatevolts"].channelId %>'
data-techName='<%=channels["vfdipp.vfdnameplatevolts"].techName %>'
data-name='<%= channels["vfdipp.vfdnameplatevolts"].name %>'
data-val="<%=channels["vfdipp.vfdnameplatevolts"].value %>"
type="number" step="any"
id="<%= channels["vfdipp.vfdnameplatevolts"].channelId %>"
value="<%=channels["vfdipp.vfdnameplatevolts"].value %>">
</td>
</tr>
<tr>
<td>Motor Poles</td>
<td>
<input class="form-control" data-channelId='<%= channels["vfdipp.vfdmotorpoles"].channelId %>'
data-techName='<%=channels["vfdipp.vfdmotorpoles"].techName %>'
data-name='<%= channels["vfdipp.vfdmotorpoles"].name %>'
data-val="<%=channels["vfdipp.vfdmotorpoles"].value %>"
type="number"
id="<%= channels["vfdipp.vfdmotorpoles"].channelId %>"
value="<%=channels["vfdipp.vfdmotorpoles"].value %>">
</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-6 box-me">
<h2>VFD SETTINGS</h2>
<table class="table">
<tbody>
<tr>
<td>Min. Frequency (Hz)</td>
<td>
<input class="form-control" data-channelId='<%= channels["vfdipp.vfdminfreq"].channelId %>'
data-techName='<%=channels["vfdipp.vfdminfreq"].techName %>'
data-name='<%= channels["vfdipp.vfdminfreq"].name %>'
data-val="<%=channels["vfdipp.vfdminfreq"].value %>"
type="number" step="any"
id="<%= channels["vfdipp.vfdminfreq"].channelId %>"
value="<%=channels["vfdipp.vfdminfreq"].value %>">
</td>
</tr>
<tr>
<td>Max. Frequency (Hz)</td>
<td>
<input class="form-control" data-channelId='<%= channels["vfdipp.vfdmaxfreq"].channelId %>'
data-techName='<%=channels["vfdipp.vfdmaxfreq"].techName %>'
data-name='<%= channels["vfdipp.vfdmaxfreq"].name %>'
data-val="<%=channels["vfdipp.vfdmaxfreq"].value %>"
type="number" step="any"
id="<%= channels["vfdipp.vfdmaxfreq"].channelId %>"
value="<%=channels["vfdipp.vfdmaxfreq"].value %>">
</td>
</tr>
<tr>
<td>Accel. Time (sec)</td>
<td>
<input class="form-control" data-channelId='<%= channels["vfdipp.vfdacceltime"].channelId %>'
data-techName='<%=channels["vfdipp.vfdacceltime"].techName %>'
data-name='<%= channels["vfdipp.vfdacceltime"].name %>'
data-val="<%=channels["vfdipp.vfdacceltime"].value %>"
type="number" step="any"
id="<%= channels["vfdipp.vfdacceltime"].channelId %>"
value="<%=channels["vfdipp.vfdacceltime"].value %>">
</td>
</tr>
<tr>
<td>Decel. Time (sec)</td>
<td>
<input class="form-control" data-channelId='<%= channels["vfdipp.vfddeceltime"].channelId %>'
data-techName='<%=channels["vfdipp.vfddeceltime"].techName %>'
data-name='<%= channels["vfdipp.vfddeceltime"].name %>'
data-val="<%=channels["vfdipp.vfddeceltime"].value %>"
type="number" step="any"
id="<%= channels["vfdipp.vfddeceltime"].channelId %>"
value="<%=channels["vfdipp.vfddeceltime"].value %>">
</td>
</tr>
<tr>
<td>Stop Mode</td>
<td><%= channels["vfdipp.vfdstopmode"].value %></td>
</tr>
<tr>
<td>Torque Perf. Mode</td>
<td><%= channels["vfdipp.vfdtorqueperfmode"].value %></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="text-center"><h1>DOWNHOLE CONFIGURATION</h1></div> <div class="text-center"><h1>DOWNHOLE CONFIGURATION</h1></div>
<div class="row overview"> <div class="row">
<div class='col-xs-12 text-center'> <div class='col-xs-12 text-center box-me'>
<h2>Downhole Sensor Enabled</h2> <h2>Downhole Sensor Enabled</h2>
<input type="toggle" data-checkedValue="1" data-uncheckedValue="0" data-valueupdate="downholetoolenabled" data-channelId='<%= channels["vfdipp.downholetoolenabled"].channelId %>' data-techName='<%=channels["vfdipp.downholetoolenabled"].techName %>' data-name='vfdipp.downholetoolenabled' id="<%= channels["vfdipp.downholetoolenabled"].channelId %>" name="<%= channels["vfdipp.downholetoolenabled"].channelId %>"> <input type="toggle" data-checkedValue="1" data-uncheckedValue="0" data-valueupdate="downholetoolenabled" data-channelId='<%= channels["vfdipp.downholetoolenabled"].channelId %>' data-techName='<%=channels["vfdipp.downholetoolenabled"].techName %>' data-name='vfdipp.downholetoolenabled' id="<%= channels["vfdipp.downholetoolenabled"].channelId %>" name="<%= channels["vfdipp.downholetoolenabled"].channelId %>">
</div> </div>
<div class='col-xs-6 text-center'> <div class='col-xs-6 text-center box-me'>
<h2>Pressure Trip</h2> <h2>Pressure Trip</h2>
<div class="gauge-box"> <div class="gauge-box">
<table class="table"> <table class="table">
@@ -23,21 +210,15 @@
</tr> </tr>
<tr> <tr>
<td>Pressure Shutdown Limit</td> <td>Pressure Shutdown Limit (PSI)</td>
<td> <td>
<div class="input-box"> <input class="form-control" data-channelId='<%= channels["vfdipp.dhpressureshutdownlimit"].channelId %>'
<div class="form-item"> data-techName='<%=channels["vfdipp.dhpressureshutdownlimit"].techName %>'
<div class="info"> data-name='<%= channels["vfdipp.dhpressureshutdownlimit"].name %>'
<input data-channelId='<%= channels["vfdipp.dhpressureshutdownlimit"].channelId %>' data-val="<%=channels["vfdipp.dhpressureshutdownlimit"].value %>"
data-techName='<%=channels["vfdipp.dhpressureshutdownlimit"].techName %>' type="number" step="any"
data-name='<%= channels["vfdipp.dhpressureshutdownlimit"].name %>' id="<%= channels["vfdipp.dhpressureshutdownlimit"].channelId %>"
data-val="<%=channels["vfdipp.dhpressureshutdownlimit"].value %>" value="<%=channels["vfdipp.dhpressureshutdownlimit"].value %>">
type="number" step="any"
id="<%= channels["vfdipp.dhpressureshutdownlimit"].channelId %>"
value="<%=channels["vfdipp.dhpressureshutdownlimit"].value %>">
</div>
</div>
</div>
</td> </td>
</tr> </tr>
@@ -49,21 +230,15 @@
</tr> </tr>
<tr> <tr>
<td>Pressure Startup Limit</td> <td>Pressure Startup Limit (PSI)</td>
<td> <td>
<div class="input-box"> <input class="form-control" data-channelId='<%= channels["vfdipp.dhpressurestartup"].channelId %>'
<div class="form-item"> data-techName='<%=channels["vfdipp.dhpressurestartup"].techName %>'
<div class="info"> data-name='<%= channels["vfdipp.dhpressurestartup"].name %>'
<input data-channelId='<%= channels["vfdipp.dhpressurestartup"].channelId %>' data-val="<%=channels["vfdipp.dhpressurestartup"].value %>"
data-techName='<%=channels["vfdipp.dhpressurestartup"].techName %>' type="number" step="any"
data-name='<%= channels["vfdipp.dhpressurestartup"].name %>' id="<%= channels["vfdipp.dhpressurestartup"].channelId %>"
data-val="<%=channels["vfdipp.dhpressurestartup"].value %>" value="<%=channels["vfdipp.dhpressurestartup"].value %>">
type="number" step="any"
id="<%= channels["vfdipp.dhpressurestartup"].channelId %>"
value="<%=channels["vfdipp.dhpressurestartup"].value %>">
</div>
</div>
</div>
</td> </td>
</tr> </tr>
@@ -72,7 +247,7 @@
</div> </div>
</div> </div>
<div class='col-xs-6 text-center'> <div class='col-xs-6 text-center box-me'>
<h2>Temperature Trip</h2> <h2>Temperature Trip</h2>
<div class="gauge-box"> <div class="gauge-box">
<table class="table"> <table class="table">
@@ -85,21 +260,15 @@
</tr> </tr>
<tr> <tr>
<td>Temperature Shutdown Limit</td> <td>Temperature Shutdown Limit (deg F)</td>
<td> <td>
<div class="input-box"> <input class="form-control" data-channelId='<%= channels["vfdipp.dhtempshutdown"].channelId %>'
<div class="form-item"> data-techName='<%=channels["vfdipp.dhtempshutdown"].techName %>'
<div class="info"> data-name='<%= channels["vfdipp.dhtempshutdown"].name %>'
<input data-channelId='<%= channels["vfdipp.dhtempshutdown"].channelId %>' data-val="<%=channels["vfdipp.dhtempshutdown"].value %>"
data-techName='<%=channels["vfdipp.dhtempshutdown"].techName %>' type="number" step="any"
data-name='<%= channels["vfdipp.dhtempshutdown"].name %>' id="<%= channels["vfdipp.dhtempshutdown"].channelId %>"
data-val="<%=channels["vfdipp.dhtempshutdown"].value %>" value="<%=channels["vfdipp.dhtempshutdown"].value %>">
type="number" step="any"
id="<%= channels["vfdipp.dhtempshutdown"].channelId %>"
value="<%=channels["vfdipp.dhtempshutdown"].value %>">
</div>
</div>
</div>
</td> </td>
</tr> </tr>
@@ -111,21 +280,15 @@
</tr> </tr>
<tr> <tr>
<td>Temperature Startup Limit</td> <td>Temperature Startup Limit (deg F)</td>
<td> <td>
<div class="input-box"> <input class="form-control" data-channelId='<%= channels["vfdipp.dhtempstartuplimit"].channelId %>'
<div class="form-item"> data-techName='<%=channels["vfdipp.dhtempstartuplimit"].techName %>'
<div class="info"> data-name='<%= channels["vfdipp.dhtempstartuplimit"].name %>'
<input data-channelId='<%= channels["vfdipp.dhtempstartuplimit"].channelId %>' data-val="<%=channels["vfdipp.dhtempstartuplimit"].value %>"
data-techName='<%=channels["vfdipp.dhtempstartuplimit"].techName %>' type="number" step="any"
data-name='<%= channels["vfdipp.dhtempstartuplimit"].name %>' id="<%= channels["vfdipp.dhtempstartuplimit"].channelId %>"
data-val="<%=channels["vfdipp.dhtempstartuplimit"].value %>" value="<%=channels["vfdipp.dhtempstartuplimit"].value %>">
type="number" step="any"
id="<%= channels["vfdipp.dhtempstartuplimit"].channelId %>"
value="<%=channels["vfdipp.dhtempstartuplimit"].value %>">
</div>
</div>
</div>
</td> </td>
</tr> </tr>
@@ -138,17 +301,17 @@
</form> </form>
<style> <style>
.overview .col-xs-4 { .box-me {
position: relative; position: relative;
padding: 0.5em; padding: 0.5em;
padding-bottom: 1.5em; padding-bottom: 1.5em;
border: 1px solid #eee; border: 1px solid #eee;
/*margin: 1em 0;*/ /*margin: 1em 0;*/
} }
.overview .gauge-box { .box-me .gauge-box {
margin-top: -0.25em; margin-top: -0.25em;
} }
.overview h2 { .box-me h2 {
text-transform: uppercase; text-transform: uppercase;
font-size: 14px; font-size: 14px;
color: #666; color: #666;