Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Views/Evento/Index.cshtml @ 185:2d02adb79322
Se agrega fecha de termino de un Evento y se incluye la hora a la fecha de inicio.
Se modifica la propiedad Fecha del Evento, renombrandola FechaInicio.
En el ModelView se agrega propiedades Duración y Hora del Evento cuando es Modificado, Nuevo y Agendado.
Las fechas ingresadas son creadas en sistema UTC
Queda pendiente Agregar duración a Google Calendar.
author | alabra |
---|---|
date | Tue, 09 Aug 2011 01:04:27 -0400 |
parents | 212c664db5aa |
children | 6944c54f834f |
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> | |
185
2d02adb79322
Se agrega fecha de termino de un Evento y se incluye la hora a la fecha de inicio.
alabra
parents:
183
diff
changeset
|
10 <th>Fecha (GMT +0)</th> |
2d02adb79322
Se agrega fecha de termino de un Evento y se incluye la hora a la fecha de inicio.
alabra
parents:
183
diff
changeset
|
11 <th>Duración</th> |
168 | 12 <th>Evento</th> |
13 <th>Estado</th> | |
14 <th>Acciones</th> | |
15 </tr> | |
16 </thead> | |
17 <tbody> | |
18 @foreach (var item in Model.ProximosEventos) | |
19 { | |
20 <tr> | |
21 <td>@item.Fecha</td> | |
185
2d02adb79322
Se agrega fecha de termino de un Evento y se incluye la hora a la fecha de inicio.
alabra
parents:
183
diff
changeset
|
22 <td>@item.Duracion</td> |
168 | 23 <td>@item.Titulo</td> |
24 <td>@item.Estado</td> | |
25 <td class="buttons"> | |
26 @if (item.PuedeAgendar) | |
27 { | |
173
3095a0b960c8
Ticket 153: UI de Publicar. Se agregó ui-button-confirm a botones que requieren confirmación y el comportamiento.
juanjose.montesdeocaarbos
parents:
168
diff
changeset
|
28 @Html.ActionLink("Agendar", "Agendar", "Evento", new { id = item.Id }, null) |
168 | 29 <span> </span> |
30 } | |
31 @if (item.PuedeModificar) | |
32 { | |
33 @Html.ActionLink("Modificar", "Modificar", new { id = item.Id }) | |
34 <span> </span> | |
35 } | |
36 @if (item.PuedeConfirmar) | |
37 { | |
173
3095a0b960c8
Ticket 153: UI de Publicar. Se agregó ui-button-confirm a botones que requieren confirmación y el comportamiento.
juanjose.montesdeocaarbos
parents:
168
diff
changeset
|
38 @Html.ActionLink("Confirmar", "Confirmar", new { id = item.Id }, new { @class = "ui-button-confirm" }) |
168 | 39 <span> </span> |
40 } | |
41 @if (item.PuedePublicar) | |
42 { | |
43 @Html.ActionLink("Publicar", "Publicar", new { id = item.Id }) | |
44 <span> </span> | |
45 } | |
46 @if (item.PuedeCancelar) | |
47 { | |
173
3095a0b960c8
Ticket 153: UI de Publicar. Se agregó ui-button-confirm a botones que requieren confirmación y el comportamiento.
juanjose.montesdeocaarbos
parents:
168
diff
changeset
|
48 @Html.ActionLink("Cancelar", "Cancelar", new { id = item.Id }, new { @class = "ui-button-confirm"}) |
168 | 49 <span> </span> |
50 } | |
51 @if (item.PuedeDescartar) | |
52 { | |
173
3095a0b960c8
Ticket 153: UI de Publicar. Se agregó ui-button-confirm a botones que requieren confirmación y el comportamiento.
juanjose.montesdeocaarbos
parents:
168
diff
changeset
|
53 @Html.ActionLink("Descartar", "Descartar", new { id = item.Id }, new { @class = "ui-button-confirm"}) |
168 | 54 <span> </span> |
55 } | |
56 @if (item.PuedeReAgendar) | |
57 { | |
58 @Html.ActionLink("Re-Agendar", "ReAgendar", new { id = item.Id }) | |
59 <span> </span> | |
60 } | |
183
212c664db5aa
Generalización del manejo de las acciones sobre eventos
nelopauselli
parents:
177
diff
changeset
|
61 <!-- |
168 | 62 @if (item.PuedeReProponer) |
63 { | |
64 @Html.ActionLink("Re-Proponer", "ReProponer", new { id = item.Id }) | |
65 <span> </span> | |
66 } | |
183
212c664db5aa
Generalización del manejo de las acciones sobre eventos
nelopauselli
parents:
177
diff
changeset
|
67 --> |
168 | 68 </td> |
69 </tr> | |
70 } | |
71 </tbody> | |
72 </table> | |
73 </div> | |
74 <div class="buttons"> | |
75 @Html.ActionLink("Nuevo", "Nuevo") | |
76 </div> |