Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Web/Views/Propuesta/Index.cshtml @ 26:71b02443450a
UI de Propuestas de VANs
author | nelo@MTEySS.neluz.int |
---|---|
date | Tue, 15 Mar 2011 08:45:00 -0300 |
parents | |
children | 475be11edf56 |
comparison
equal
deleted
inserted
replaced
25:e8d2be47a6b0 | 26:71b02443450a |
---|---|
1 @model Agendas.Web.Models.PropuestaIndexModel | |
2 @{ | |
3 ViewBag.Title = "Propuestas"; | |
4 } | |
5 | |
6 <p> | |
7 Temas propuestos aun no agendados | |
8 </p> | |
9 <table> | |
10 <thead> | |
11 <tr> | |
12 <th>Propuesta</th> | |
13 <th>Ponente</th> | |
14 <th>Acciones</th> | |
15 </tr> | |
16 </thead> | |
17 <tbody> | |
18 @foreach (var item in Model.Propuestas) | |
19 { | |
20 <tr> | |
21 <td>@item.Titulo</td> | |
22 <td>@item.Ponente</td> | |
23 <td> | |
24 @Html.ActionLink("Modificar", "Edit", new { id = item.Id }) | |
25 @Html.ActionLink("Publicar", "Publish", new { id = item.Id }) | |
26 </td> | |
27 </tr> | |
28 } | |
29 </tbody> | |
30 </table> | |
31 | |
32 <p> | |
33 @Html.ActionLink("Nueva", "New") | |
34 </p> |