Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Views/Persona/Index.cshtml @ 210:5cc7bc973ffc
Ticket 175: Que al confirmar un evento, muestre una pantalla sugiriendo el servicio de scheduler.
author | juanjose.montesdeocaarbos |
---|---|
date | Fri, 26 Aug 2011 07:26:29 -0300 |
parents | 97e51ddeeb58 |
children |
line wrap: on
line source
@model AltNetHispano.Agendas.Web.Models.PersonaIndexModel <h2>Personas</h2> <p> Las personas registradas en la aplicación son: </p> <div id="content"> <table> <thead> <tr> <th>Nombre</th> <th>Acciones</th> </tr> </thead> <tbody> @foreach (var item in Model.Items) { <tr> <td>@item.Nombre</td> <td class="buttons"> @Html.ActionLink("Modificar", "Modificar", null, new { id = item.Id }, null) <span> </span> @Html.ActionLink("Quitar", "Quitar", null, new { id = item.Id }, null) <span> </span> </td> </tr> } </tbody> </table> </div> <div class="buttons"> @Html.ActionLink("Nueva", "Nueva") </div>