Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Web/Views/Patrocinador/Index.cshtml @ 275:bf993f99cee3
Ticket #123: Patrocinadores de las vans.
author | juanjose.montesdeocaarbos |
---|---|
date | Wed, 14 Dec 2011 08:15:44 -0300 |
parents | |
children | 1e889a2e45c5 |
comparison
equal
deleted
inserted
replaced
274:72a96459f910 | 275:bf993f99cee3 |
---|---|
1 @model AltNetHispano.Agendas.Web.Models.PatrocinadorIndexModel | |
2 <h2>Agenda</h2> | |
3 <p> | |
4 Los Patrocinadores son: | |
5 </p> | |
6 <div id="content"> | |
7 <table> | |
8 <thead> | |
9 <tr> | |
10 <th></th> | |
11 <th>Patrocinador</th> | |
12 <th>Acciones</th> | |
13 </tr> | |
14 </thead> | |
15 <tbody> | |
16 @foreach (var item in Model.Items) | |
17 { | |
18 <tr> | |
19 <td><img src="/Patrocinador/GetLogo?id=@item.Id" /></td> | |
20 <td>@item.Nombre</td> | |
21 <td> | |
22 @Html.ActionLink("Modificar", "Modificar", new { id = item.Id }) | |
23 <span> </span> | |
24 @Html.ActionLink("Eliminar", "Eliminar", new { id = item.Id }, new { @class = "ui-button-confirm" }) | |
25 <span> </span> | |
26 </td> | |
27 </tr> | |
28 } | |
29 </tbody> | |
30 </table> | |
31 </div> | |
32 <div class="buttons"> | |
33 @Html.ActionLink("Nuevo", "Nuevo") | |
34 </div> |