view 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 source

@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>