Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Views/Propuesta/Index.cshtml @ 75:96d7609f2e08
Agendar evento propuesto
author | nelopauselli |
---|---|
date | Mon, 23 May 2011 20:43:01 -0300 |
parents | 08dbe42fdde1 |
children |
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 }) | |
75 | 22 @Html.ActionLink("Agendar", "Edit", "Evento", new { id = item.Id }, null) |
26 | 23 </td> |
24 </tr> | |
25 } | |
26 </tbody> | |
27 </table> | |
28 | |
29 <p> | |
30 @Html.ActionLink("Nueva", "New") | |
31 </p> |