diff Agendas/trunk/src/Agendas.Web/Views/Shared/EditorTemplates/Recordatorios.cshtml @ 217:c4c60e034103 deploy 2011-09-06

sugerencia de recordatorios
author nelopauselli
date Tue, 06 Sep 2011 18:09:43 -0300
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Agendas/trunk/src/Agendas.Web/Views/Shared/EditorTemplates/Recordatorios.cshtml	Tue Sep 06 18:09:43 2011 -0300
@@ -0,0 +1,28 @@
+@model AltNetHispano.Agendas.Twitter.Recordatorios
+
+<p>
+@Model.Cabecera
+@if (!string.IsNullOrWhiteSpace(Model.CabeceraLink)) {
+<a href='@Model.CabeceraLink' target="_blank">servicio recomendado</a>
+}
+</p>
+
+<table>
+	<thead>
+		<tr>
+			<th>Fecha</th>
+			<th>Hora</th>
+			<th>Mensaje</th>
+		</tr>
+	</thead>
+	<tbody>
+@foreach (var item in Model.Items)
+{
+		<tr>
+			<td>@item.Fecha</td>
+			<td>@item.Hora</td>
+			<td>@item.Mensaje</td>
+		</tr>
+}
+	</tbody>
+</table>
\ No newline at end of file