Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Views/Historico/Index.cshtml @ 277:7439d7a5f8d0
Warning HTML: Cambiado ALT por TITLE.
author | juanjose.montesdeocaarbos |
---|---|
date | Tue, 20 Dec 2011 08:28:33 -0300 |
parents | 11545cc95491 |
children | a8f7c41e3b47 |
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) { <tr> <td>@item.Numero</td> <td>@item.Fecha</td> <td>@item.Tipo</td> <td><a href="@item.Wiki">@item.Titulo</a></td> <td> @foreach(var ponente in item.Ponentes) { @ponente<br /> } </td> <td>@item.Duracion</td> </tr> } </tbody> </table>