43 lines
1.1 KiB
HTML
43 lines
1.1 KiB
HTML
<style>
|
|
.header h4 {
|
|
position: relative;
|
|
top: 0.9em;
|
|
}
|
|
.header h2 {
|
|
text-transform: uppercase;
|
|
font-size: 14px;
|
|
color: #aaa;
|
|
margin: 0.75em 0;
|
|
}
|
|
.header p {
|
|
font-size: 24px;
|
|
color: black;
|
|
font-weight: 600;
|
|
}
|
|
</style>
|
|
|
|
<div class="row header">
|
|
<div class="col-xs-1">
|
|
<div class="<%= nodecolors.statuscolor %> nodecolor"></div>
|
|
</div>
|
|
|
|
<div class="col-xs-2">
|
|
<img src="<%= nodeimgurl %>" />
|
|
</div>
|
|
|
|
<div class="col-xs-4">
|
|
<h4><%= node.vanityname %></h4>
|
|
</div>
|
|
|
|
<div class="col-xs-2" style="text-align:center;">
|
|
<h2>Flow Rate</h2>
|
|
<p><%= Math.round(channels['promagmbs.volume_flow'].value * 100) / 100 %></p>
|
|
<h2><%= channels['promagmbs.volume_flow_units'].value %></h2>
|
|
</div>
|
|
<div class="col-xs-2" style="text-align:center;">
|
|
<h2>Totalizer 1 Today</h2>
|
|
<p><%= Math.round(channels['promagmbs.totalizer_1_today'].value * 100) / 100 %></p>
|
|
<h2><%= channels['promagmbs.totalizer_1_units'].value %></h2>
|
|
</div>
|
|
</div>
|