completata grafica x schedulazione impegni

This commit is contained in:
Samuele E. Locatelli
2018-03-23 13:58:57 +01:00
parent 5bdc9c925a
commit c0bfc21e05
+8 -8
View File
@@ -8,21 +8,21 @@
<div class="card-body p-1">
<asp:Repeater ID="repCtr" runat="server" DataSourceID="ods">
<ItemTemplate>
<div class="row">
<div class="col-12 text-center text-uppercase">
<div class="row py-0">
<div class="col-12 text-center text-dark text-uppercase">
<b style="font-size: 1.2em;"><%# Eval("DueDate","{0:ddd dd.MM.yyy}") %></b>
</div>
<div class="col-6 text-center">
<b><%# Eval("TotPesoEquiv","{0:N} kg") %></b><br />
<small><%# Eval("TotPeso","({0:N} kg)") %></small>
<div class="col-6 text-center text-warning">
<b><%# Eval("TotPesoEquiv","{0:N0} kg") %></b><br />
<small class="text-secondary"><%# Eval("TotPeso","({0:N} kg)") %></small>
</div>
<div class="col-6 text-center">
<div class="col-6 text-center text-success">
<b><%# Eval("NumUnit") %></b> x <i class="fa fa-th-large"></i>
<br />
<%# Eval("RatioUnit","({0:N2})") %>
<small class="text-secondary"><%# Eval("RatioUnit","({0:N2})") %></small>
</div>
</div>
<hr />
<hr class="my-1" />
</ItemTemplate>
</asp:Repeater>
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="GetData" TypeName="XPS_data.DS_applicazioneTableAdapters.ImpegniSchedulatiTableAdapter">