Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Web/Views/Evento/Index.cshtml @ 25:e8d2be47a6b0
Cambios de nombre en Portal.Web (Agenda x Evento)
author | nelo@MTEySS.neluz.int |
---|---|
date | Tue, 15 Mar 2011 08:24:18 -0300 |
parents | |
children | 475be11edf56 |
comparison
equal
deleted
inserted
replaced
24:41b283d27e3e | 25:e8d2be47a6b0 |
---|---|
1 @model Agendas.Web.Models.EventoIndexModel | |
2 @{ | |
3 ViewBag.Title = "Agenda"; | |
4 } | |
5 | |
6 <p> | |
7 Los próximos eventos son: | |
8 </p> | |
9 <table> | |
10 <thead> | |
11 <tr> | |
12 <th>Evento</th> | |
13 <th>Acciones</th> | |
14 </tr> | |
15 </thead> | |
16 <tbody> | |
17 @foreach (var item in Model.ProximosEventos) | |
18 { | |
19 <tr> | |
20 <td>@item.Titulo</td> | |
21 <td>@Html.ActionLink("Modificar", "Edit", new { id = item.Id })</td> | |
22 </tr> | |
23 } | |
24 </tbody> | |
25 </table> | |
26 | |
27 <p> | |
28 @Html.ActionLink("Nuevo", "New") | |
29 </p> |