view Agendas/trunk/src/Agendas.Web/Views/Evento/Index.cshtml @ 34:475be11edf56

Ajuste en los nombre de los assemblies y namespaces
author nelo@MTEySS.neluz.int
date Thu, 17 Mar 2011 16:59:29 -0300
parents e8d2be47a6b0
children 08dbe42fdde1
line wrap: on
line source

@model AltNetHispano.Agendas.Web.Models.EventoIndexModel
@{
    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>