view Agendas/trunk/src/Agendas.Web/Views/Agenda/Index.cshtml @ 10:c62b77fc33f4

website inicial
author nelo@MTEySS.neluz.int
date Sun, 13 Mar 2011 18:51:06 -0300
parents
children
line wrap: on
line source

@model Agendas.Web.Models.AgendaIndexModel
@{
    ViewBag.Title = "Agenda";
}

<p>
    Los próximos eventos son:
</p>
<table>
    <thead>
        <tr>
            <th>Evento</th>
            <th>Acciones</th>
        </tr>
    </thead>
    <tbody>
        @foreach (var item in Model.ProximosEventos)
        {
        <tr>
            <td>@item.Titulo</td>
            <td>@Html.ActionLink("Modificar", "Edit", new { id = item.Id })</td>
        </tr>
        }
    </tbody>
</table>
    
<p>
@Html.ActionLink("Nuevo", "New")
</p>