Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Web/Views/Historico/Index.cshtml @ 172:a18d4d12fc36
Se ordena el historial por Nro de Orden
author | juanjose.montesdeocaarbos |
---|---|
date | Sat, 06 Aug 2011 15:11:41 -0300 |
parents | c99636fbdc5f |
children | 85ddae313408 |
comparison
equal
deleted
inserted
replaced
171:4e4b758ab744 | 172:a18d4d12fc36 |
---|---|
13 <th>Ponente</th> | 13 <th>Ponente</th> |
14 <th>Duración</th> | 14 <th>Duración</th> |
15 </tr> | 15 </tr> |
16 </thead> | 16 </thead> |
17 <tbody> | 17 <tbody> |
18 @foreach (var item in Model.Items) | 18 @foreach (var item in Model.Items.OrderByDescending(i => i.Numero)) |
19 { | 19 { |
20 <tr> | 20 <tr> |
21 <td>@item.Numero</td> | 21 <td>@item.Numero</td> |
22 <td>@item.Fecha</td> | 22 <td>@item.Fecha</td> |
23 <td>@item.Tipo</td> | 23 <td>@item.Tipo</td> |