diff Agendas/trunk/src/Agendas.Web/Views/Historico/Index.cshtml @ 119:8fa58a79656a

Historico
author Nelo@Kenia.neluz.int
date Wed, 22 Jun 2011 09:49:07 -0300
parents
children c99636fbdc5f
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Agendas/trunk/src/Agendas.Web/Views/Historico/Index.cshtml	Wed Jun 22 09:49:07 2011 -0300
@@ -0,0 +1,26 @@
+@model AltNetHispano.Agendas.Web.Models.HistoricoIndexModel
+<h2>Histórico</h2>
+<p>
+    Eventos ya realizados:
+</p>
+<table>
+    <thead>
+        <tr>
+            <th>Fecha</th>
+            <th>Evento</th>
+            <th>Ponente</th>
+            <th>Wiki</th>
+        </tr>
+    </thead>
+    <tbody>
+        @foreach (var item in Model.Items)
+        {
+        <tr>
+            <td>@item.Fecha</td>
+            <td>@item.Titulo</td>
+            <td>@item.Ponente</td>
+            <td>@item.Wiki</td>
+        </tr>
+		}
+    </tbody>
+</table>
\ No newline at end of file