Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Views/Propuesta/Index.cshtml @ 48:08dbe42fdde1
Cambios menores en UI
author | nelopauselli |
---|---|
date | Fri, 13 May 2011 20:11:05 -0300 |
parents | 475be11edf56 |
children | 96d7609f2e08 |
rev | line source |
---|---|
34
475be11edf56
Ajuste en los nombre de los assemblies y namespaces
nelo@MTEySS.neluz.int
parents:
26
diff
changeset
|
1 @model AltNetHispano.Agendas.Web.Models.PropuestaIndexModel |
48 | 2 <h2>Propuestas</h2> |
26 | 3 <p> |
4 Temas propuestos aun no agendados | |
5 </p> | |
6 <table> | |
7 <thead> | |
8 <tr> | |
9 <th>Propuesta</th> | |
10 <th>Ponente</th> | |
11 <th>Acciones</th> | |
12 </tr> | |
13 </thead> | |
14 <tbody> | |
15 @foreach (var item in Model.Propuestas) | |
16 { | |
17 <tr> | |
18 <td>@item.Titulo</td> | |
19 <td>@item.Ponente</td> | |
20 <td> | |
21 @Html.ActionLink("Modificar", "Edit", new { id = item.Id }) | |
22 @Html.ActionLink("Publicar", "Publish", new { id = item.Id }) | |
23 </td> | |
24 </tr> | |
25 } | |
26 </tbody> | |
27 </table> | |
28 | |
29 <p> | |
30 @Html.ActionLink("Nueva", "New") | |
31 </p> |