Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Views/Historico/Index.cshtml @ 202:a731086c0b28
Se soluciona ticket 174.
Además se agrega detalle del campo Hora y Duración cuando son obligatorios en Resources.
author | alabra |
---|---|
date | Sat, 20 Aug 2011 18:40:36 -0400 |
parents | a18d4d12fc36 |
children | 85ddae313408 |
line wrap: on
line source
@model AltNetHispano.Agendas.Web.Models.HistoricoIndexModel <h2>Histórico</h2> <p> Eventos ya realizados: </p> <table> <thead> <tr> <th>Nro.</th> <th>Fecha</th> <th>Tipo</th> <th>Evento</th> <th>Ponente</th> <th>Duración</th> </tr> </thead> <tbody> @foreach (var item in Model.Items.OrderByDescending(i => i.Numero)) { <tr> <td>@item.Numero</td> <td>@item.Fecha</td> <td>@item.Tipo</td> <td><a href="@item.Wiki">@item.Titulo</a></td> <td>@item.Ponente</td> <td>@item.Duracion</td> </tr> } </tbody> </table>