Advertisement
stormjez

Untitled

Dec 18th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. <div class="row">
  2. <div class="col-sm-12">
  3. @foreach (var mese in Model.OrdiniMesi)
  4. {
  5. <table class="table table-fixed table-striped table-dark table-sm table-responsive-sm">
  6. <thead class="">
  7. <tr>
  8. <th scope="col" class="col-xs-3 text-center">@mese.MeseNome</th>
  9. <th scope="col" class="col-xs-3 text-center">Ordini</th>
  10. <th scope="col" class="col-xs-3 text-center">Entrate ( &euro; )</th>
  11. <th scope="col" class="col-xs-3 text-center">Debito ( &euro; )</th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. @{
  16. var OrdiniGiorno = Model.OrdiniGiorno.Where(p => p.Mese == mese.Mese && p.Anno == mese.Anno);
  17. foreach (var giorno in OrdiniGiorno)
  18. {
  19. <tr>
  20. <td scope="row" class="col-xs-3 text-center">@giorno.GiornoNumero</td>
  21. <td class="col-xs-3 text-center">@giorno.NumeroOrdini</td>
  22. <td class="col-xs-3 text-center">@giorno.Entrate</td>
  23. <td class="col-xs-3 text-center">@giorno.Debito</td>
  24. </tr>
  25. }
  26. }
  27. </tbody>
  28. </table>
  29. <br />
  30. }
  31. </div>
  32. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement