view Agendas/trunk/src/Agendas.Web/Views/Historico/Index.cshtml @ 126:6012f2becf97

Se agrega instalación de nuget package para el calendario de google.
author alabra
date Tue, 28 Jun 2011 23:35:22 -0400
parents 8fa58a79656a
children c99636fbdc5f
line wrap: on
line source

@model AltNetHispano.Agendas.Web.Models.HistoricoIndexModel
<h2>Histórico</h2>
<p>
    Eventos ya realizados:
</p>
<table>
    <thead>
        <tr>
            <th>Fecha</th>
            <th>Evento</th>
            <th>Ponente</th>
            <th>Wiki</th>
        </tr>
    </thead>
    <tbody>
        @foreach (var item in Model.Items)
        {
        <tr>
            <td>@item.Fecha</td>
            <td>@item.Titulo</td>
            <td>@item.Ponente</td>
            <td>@item.Wiki</td>
        </tr>
		}
    </tbody>
</table>