view Agendas/trunk/src/Agendas.Web/Views/Historico/Index.cshtml @ 148:c99636fbdc5f

Ticket 155: Agregar Nro de Orden, Tipo y Duración real en la pantalla de Histórico, similar a como es la página actual en altnethispano.org. Pendiente: Falta que tome la duración cargada.
author juanjose.montesdeocaarbos
date Tue, 02 Aug 2011 23:05:50 -0300
parents 8fa58a79656a
children a18d4d12fc36
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&oacute;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>@item.Ponente</td>
            <td>@item.Duracion</td>
        </tr>
		}
    </tbody>
</table>