view Agendas/trunk/src/Agendas.Web/Views/Shared/EditorTemplates/Recordatorios.cshtml @ 302:11dddcc9a862 tip

Historico de Eventos, no muestra bien la Url del Patrocinador.
author juanjose.montesdeocaarbos
date Tue, 14 Aug 2012 21:54:30 -0300
parents c4c60e034103
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>