Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Views/Propuesta/Index.cshtml @ 40:c49ba9697ca5
Modificacion para probar Hg
author | cpeix |
---|---|
date | Fri, 18 Mar 2011 11:50:51 -0300 |
parents | 475be11edf56 |
children | 08dbe42fdde1 |
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 |
26 | 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> |