diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Agendas/trunk/src/Agendas.Web/Views/Propuesta/Index.cshtml	Tue Mar 15 08:45:00 2011 -0300
@@ -0,0 +1,34 @@
+@model Agendas.Web.Models.PropuestaIndexModel
+@{
+    ViewBag.Title = "Propuestas";
+}
+
+<p>
+    Temas propuestos aun no agendados
+</p>
+<table>
+    <thead>
+        <tr>
+            <th>Propuesta</th>
+            <th>Ponente</th>
+            <th>Acciones</th>
+        </tr>
+    </thead>
+    <tbody>
+        @foreach (var item in Model.Propuestas)
+        {
+        <tr>
+            <td>@item.Titulo</td>
+            <td>@item.Ponente</td>
+            <td>
+				@Html.ActionLink("Modificar", "Edit", new { id = item.Id })
+				@Html.ActionLink("Publicar", "Publish", new { id = item.Id })
+			</td>
+        </tr>
+        }
+    </tbody>
+</table>
+
+<p>
+@Html.ActionLink("Nueva", "New")
+</p>