Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Views/Patrocinador/Index.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 | 48ab8788bd19 |
children |
line wrap: on
line source
@model AltNetHispano.Agendas.Web.Models.PatrocinadorIndexModel <h2>Agenda</h2> <p> Los Patrocinadores son: </p> <div id="content"> <table> <thead> <tr> <th></th> <th>Patrocinador</th> <th>Acciones</th> </tr> </thead> <tbody> @foreach (var item in Model.Items) { <tr> <td><img src="@Url.Action("GetLogo", new { id = item.Id })" /></td> <td><a href="@item.WebSite" target="_blank">@item.Nombre</a></td> <td class="buttons"> @Html.ActionLink("Modificar", "Modificar", new { id = item.Id }) <span> </span> @Html.ActionLink("Eliminar", "Eliminar", new { id = item.Id }, new { @class = "ui-button-confirm" }) <span> </span> </td> </tr> } </tbody> </table> </div> <div class="buttons"> @Html.ActionLink("Nuevo", "Nuevo") </div>