view Agendas/trunk/src/Agendas.Web/Views/Historico/Index.cshtml @ 291:5f1e3d35e113

Patrocinadores: Correcciones en Vistas.
author juanjose.montesdeocaarbos
date Thu, 09 Feb 2012 00:12:00 -0300
parents a8f7c41e3b47
children 11dddcc9a862
line wrap: on
line source

@model AltNetHispano.Agendas.Web.Models.HistoricoIndexModel
<h2>Histórico</h2>
<p>
    Eventos ya realizados:
</p>
<table>
    <thead>
        <tr>
            <th>Nro.</th>
            <th>Fecha</th>
            <th>Tipo</th>
            <th>Evento</th>
            <th>Ponente</th>
            <th>Duraci&oacute;n</th>
            <th>Patrocinadores</th>
        </tr>
    </thead>
    <tbody>
        @foreach (var item in Model.Items)
        {
        <tr>
            <td>@item.Numero</td>
            <td>@item.Fecha</td>
            <td>@item.Tipo</td>
            <td><a href="@item.Wiki">@item.Titulo</a></td>
            <td>
				@foreach(var ponente in item.Ponentes) {
					@ponente<br />
				}
			</td>
            <td>@item.Duracion</td>
            <td>
                @foreach (var patrocinador in item.Patrocinadores)
                {
                    <img title="@patrocinador.Nombre" src="/Patrocinador/GetLogo?id=@patrocinador.Id" class="logo" />
                }
            </td>
        </tr>
		}
    </tbody>
</table>