Mercurial > altnet-hispano
annotate 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 |
rev | line source |
---|---|
34
475be11edf56
Ajuste en los nombre de los assemblies y namespaces
nelo@MTEySS.neluz.int
parents:
25
diff
changeset
|
1 @model AltNetHispano.Agendas.Web.Models.EventoIndexModel |
48 | 2 <h2>Agenda</h2> |
25
e8d2be47a6b0
Cambios de nombre en Portal.Web (Agenda x Evento)
nelo@MTEySS.neluz.int
parents:
diff
changeset
|
3 <p> |
e8d2be47a6b0
Cambios de nombre en Portal.Web (Agenda x Evento)
nelo@MTEySS.neluz.int
parents:
diff
changeset
|
4 Los próximos eventos son: |
e8d2be47a6b0
Cambios de nombre en Portal.Web (Agenda x Evento)
nelo@MTEySS.neluz.int
parents:
diff
changeset
|
5 </p> |
168 | 6 <div id="content"> |
7 <table> | |
8 <thead> | |
9 <tr> | |
10 <th>Fecha</th> | |
11 <th>Evento</th> | |
12 <th>Estado</th> | |
13 <th>Acciones</th> | |
14 </tr> | |
15 </thead> | |
16 <tbody> | |
17 @foreach (var item in Model.ProximosEventos) | |
18 { | |
19 <tr> | |
20 <td>@item.Fecha</td> | |
21 <td>@item.Titulo</td> | |
22 <td>@item.Estado</td> | |
23 <td class="buttons"> | |
24 @if (item.PuedeAgendar) | |
25 { | |
26 @Html.ActionLink("Agendar", "Agendar", "Evento", new {id = item.Id}, null) | |
27 <span> </span> | |
28 } | |
29 @if (item.PuedeModificar) | |
30 { | |
31 @Html.ActionLink("Modificar", "Modificar", new { id = item.Id }) | |
32 <span> </span> | |
33 } | |
34 @if (item.PuedeConfirmar) | |
35 { | |
36 @Html.ActionLink("Confirmar", "Confirmar", new { id = item.Id }) | |
37 <span> </span> | |
38 } | |
39 @if (item.PuedePublicar) | |
40 { | |
41 @Html.ActionLink("Publicar", "Publicar", new { id = item.Id }) | |
42 <span> </span> | |
43 } | |
44 @if (item.PuedeCancelar) | |
45 { | |
46 @Html.ActionLink("Cancelar", "Cancelar", new { id = item.Id }) | |
47 <span> </span> | |
48 } | |
49 @if (item.PuedeDescartar) | |
50 { | |
51 @Html.ActionLink("Descartar", "Descartar", new { id = item.Id }) | |
52 <span> </span> | |
53 } | |
54 @if (item.PuedeReAgendar) | |
55 { | |
56 @Html.ActionLink("Re-Agendar", "ReAgendar", new { id = item.Id }) | |
57 <span> </span> | |
58 } | |
59 @if (item.PuedeReProponer) | |
60 { | |
61 @Html.ActionLink("Re-Proponer", "ReProponer", new { id = item.Id }) | |
62 <span> </span> | |
63 } | |
64 </td> | |
65 </tr> | |
66 } | |
67 </tbody> | |
68 </table> | |
69 </div> | |
70 <div class="buttons"> | |
71 @Html.ActionLink("Nuevo", "Nuevo") | |
72 @Html.ActionLink("Proponer", "Proponer") | |
73 </div> |