view Agendas/trunk/src/Agendas.Web/Views/Evento/Index.cshtml @ 70:c7264bfc4b71

agregado de properties en clase Evento (UrlInvitacion, UrlWiki, NumeroOrden) modificaciones en proyecto Agendas.Blog modificacion de viewmodel EventoModel - agregado de UrlInvitacion (no requerido)
author jorge.rowies
date Fri, 20 May 2011 12:21:07 -0300
parents 08dbe42fdde1
children 2adf55ea9199
line wrap: on
line source

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