comparison Agendas/trunk/src/Agendas.Web/Views/Historico/Index.cshtml @ 215:85ddae313408

Se soluciona ticket #178. Se resuelve ordenar Historico de Eventos solamente por NumeroOrden de forma descendente.
author alabra
date Sun, 04 Sep 2011 18:35:33 -0300
parents a18d4d12fc36
children 11545cc95491
comparison
equal deleted inserted replaced
213:b921a0ab8504 215:85ddae313408
13 <th>Ponente</th> 13 <th>Ponente</th>
14 <th>Duraci&oacute;n</th> 14 <th>Duraci&oacute;n</th>
15 </tr> 15 </tr>
16 </thead> 16 </thead>
17 <tbody> 17 <tbody>
18 @foreach (var item in Model.Items.OrderByDescending(i => i.Numero)) 18 @foreach (var item in Model.Items)
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>