Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Web/Views/Evento/Index.cshtml @ 168:97e51ddeeb58
Cambios menores en UI
author | nelopauselli |
---|---|
date | Sat, 06 Aug 2011 03:34:45 -0300 |
parents | 6f1041301797 |
children | 3095a0b960c8 |
comparison
equal
deleted
inserted
replaced
167:ea85bd893247 | 168:97e51ddeeb58 |
---|---|
1 @model AltNetHispano.Agendas.Web.Models.EventoIndexModel | 1 @model AltNetHispano.Agendas.Web.Models.EventoIndexModel |
2 <h2>Agenda</h2> | 2 <h2>Agenda</h2> |
3 <p> | 3 <p> |
4 Los próximos eventos son: | 4 Los próximos eventos son: |
5 </p> | 5 </p> |
6 <table> | 6 <div id="content"> |
7 <thead> | 7 <table> |
8 <tr> | 8 <thead> |
9 <th>Fecha</th> | 9 <tr> |
10 <th>Evento</th> | 10 <th>Fecha</th> |
11 <th>Estado</th> | 11 <th>Evento</th> |
12 <th>Acciones</th> | 12 <th>Estado</th> |
13 </tr> | 13 <th>Acciones</th> |
14 </thead> | 14 </tr> |
15 <tbody> | 15 </thead> |
16 @foreach (var item in Model.ProximosEventos) | 16 <tbody> |
17 { | 17 @foreach (var item in Model.ProximosEventos) |
18 <tr> | 18 { |
19 <td>@item.Fecha</td> | 19 <tr> |
20 <td>@item.Titulo</td> | 20 <td>@item.Fecha</td> |
21 <td>@item.Estado</td> | 21 <td>@item.Titulo</td> |
22 <td> | 22 <td>@item.Estado</td> |
23 @if (item.PuedeAgendar) | 23 <td class="buttons"> |
24 { | 24 @if (item.PuedeAgendar) |
25 @Html.ActionLink("Agendar", "Agendar", "Evento", new {id = item.Id}, null) | 25 { |
26 <span> </span> | 26 @Html.ActionLink("Agendar", "Agendar", "Evento", new {id = item.Id}, null) |
27 } | 27 <span> </span> |
28 @if (item.PuedeModificar) | 28 } |
29 { | 29 @if (item.PuedeModificar) |
30 @Html.ActionLink("Modificar", "Modificar", new { id = item.Id }) | 30 { |
31 <span> </span> | 31 @Html.ActionLink("Modificar", "Modificar", new { id = item.Id }) |
32 } | 32 <span> </span> |
33 @if (item.PuedeConfirmar) | 33 } |
34 { | 34 @if (item.PuedeConfirmar) |
35 @Html.ActionLink("Confirmar", "Confirmar", new { id = item.Id }) | 35 { |
36 <span> </span> | 36 @Html.ActionLink("Confirmar", "Confirmar", new { id = item.Id }) |
37 } | 37 <span> </span> |
38 @if (item.PuedePublicar) | 38 } |
39 { | 39 @if (item.PuedePublicar) |
40 @Html.ActionLink("Publicar", "Publicar", new { id = item.Id }) | 40 { |
41 <span> </span> | 41 @Html.ActionLink("Publicar", "Publicar", new { id = item.Id }) |
42 } | 42 <span> </span> |
43 @if (item.PuedeCancelar) | 43 } |
44 { | 44 @if (item.PuedeCancelar) |
45 @Html.ActionLink("Cancelar", "Cancelar", new { id = item.Id }) | 45 { |
46 <span> </span> | 46 @Html.ActionLink("Cancelar", "Cancelar", new { id = item.Id }) |
47 } | 47 <span> </span> |
48 @if (item.PuedeDescartar) | 48 } |
49 { | 49 @if (item.PuedeDescartar) |
50 @Html.ActionLink("Descartar", "Descartar", new { id = item.Id }) | 50 { |
51 <span> </span> | 51 @Html.ActionLink("Descartar", "Descartar", new { id = item.Id }) |
52 } | 52 <span> </span> |
53 @if (item.PuedeReAgendar) | 53 } |
54 { | 54 @if (item.PuedeReAgendar) |
55 @Html.ActionLink("Re-Agendar", "ReAgendar", new { id = item.Id }) | 55 { |
56 <span> </span> | 56 @Html.ActionLink("Re-Agendar", "ReAgendar", new { id = item.Id }) |
57 } | 57 <span> </span> |
58 @if (item.PuedeReProponer) | 58 } |
59 { | 59 @if (item.PuedeReProponer) |
60 @Html.ActionLink("Re-Proponer", "ReProponer", new { id = item.Id }) | 60 { |
61 <span> </span> | 61 @Html.ActionLink("Re-Proponer", "ReProponer", new { id = item.Id }) |
62 } | 62 <span> </span> |
63 </td> | 63 } |
64 </tr> | 64 </td> |
65 } | 65 </tr> |
66 </tbody> | 66 } |
67 </table> | 67 </tbody> |
68 | 68 </table> |
69 <p> | 69 </div> |
70 @Html.ActionLink("Nuevo", "Nuevo") | 70 <div class="buttons"> |
71 @Html.ActionLink("Proponer", "Proponer") | 71 @Html.ActionLink("Nuevo", "Nuevo") |
72 </p> | 72 @Html.ActionLink("Proponer", "Proponer") |
73 </div> |