comparison Agendas/trunk/src/Agendas.Web/Views/Patrocinador/Index.cshtml @ 300:48ab8788bd19

#200: Patrocinadores: Agregar link al sitio web.
author juanjose.montesdeocaarbos
date Mon, 27 Feb 2012 14:45:12 -0300
parents 50b462e06ecc
children
comparison
equal deleted inserted replaced
299:8522d6a25888 300:48ab8788bd19
15 <tbody> 15 <tbody>
16 @foreach (var item in Model.Items) 16 @foreach (var item in Model.Items)
17 { 17 {
18 <tr> 18 <tr>
19 <td><img src="@Url.Action("GetLogo", new { id = item.Id })" /></td> 19 <td><img src="@Url.Action("GetLogo", new { id = item.Id })" /></td>
20 <td>@item.Nombre</td> 20 <td><a href="@item.WebSite" target="_blank">@item.Nombre</a></td>
21 <td class="buttons"> 21 <td class="buttons">
22 @Html.ActionLink("Modificar", "Modificar", new { id = item.Id }) 22 @Html.ActionLink("Modificar", "Modificar", new { id = item.Id })
23 <span>&nbsp;</span> 23 <span>&nbsp;</span>
24 @Html.ActionLink("Eliminar", "Eliminar", new { id = item.Id }, new { @class = "ui-button-confirm" }) 24 @Html.ActionLink("Eliminar", "Eliminar", new { id = item.Id }, new { @class = "ui-button-confirm" })
25 <span>&nbsp;</span> 25 <span>&nbsp;</span>