Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Web/Views/Persona/Index.cshtml @ 144:a2b14da4902f
Alta y modificación de ponentes (personas)
author | Nelo@Guinea.neluz.int |
---|---|
date | Mon, 01 Aug 2011 10:25:23 -0300 |
parents | |
children | 97e51ddeeb58 |
comparison
equal
deleted
inserted
replaced
143:2dbb15f4510f | 144:a2b14da4902f |
---|---|
1 @model AltNetHispano.Agendas.Web.Models.PersonaIndexModel | |
2 <h2>Personas</h2> | |
3 <p> | |
4 Las personas registradas en la aplicación son: | |
5 </p> | |
6 <table> | |
7 <thead> | |
8 <tr> | |
9 <th>Nombre</th> | |
10 <th>Acciones</th> | |
11 </tr> | |
12 </thead> | |
13 <tbody> | |
14 @foreach (var item in Model.Items) | |
15 { | |
16 <tr> | |
17 <td>@item.Nombre</td> | |
18 <td> | |
19 @Html.ActionLink("Modificar", "Modificar", null, new { id = item.Id }, null) | |
20 <span> </span> | |
21 @Html.ActionLink("Quitar", "Quitar", null, new { id = item.Id }, null) | |
22 <span> </span> | |
23 </td> | |
24 </tr> | |
25 } | |
26 </tbody> | |
27 </table> | |
28 | |
29 <p> | |
30 @Html.ActionLink("Nueva", "Nueva") | |
31 </p> |