comparison 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
comparison
equal deleted inserted replaced
184:2a336a6a76b5 185:2d02adb79322
5 </p> 5 </p>
6 <div id="content"> 6 <div id="content">
7 <table> 7 <table>
8 <thead> 8 <thead>
9 <tr> 9 <tr>
10 <th>Fecha</th> 10 <th>Fecha (GMT +0)</th>
11 <th>Duraci&oacute;n</th>
11 <th>Evento</th> 12 <th>Evento</th>
12 <th>Estado</th> 13 <th>Estado</th>
13 <th>Acciones</th> 14 <th>Acciones</th>
14 </tr> 15 </tr>
15 </thead> 16 </thead>
16 <tbody> 17 <tbody>
17 @foreach (var item in Model.ProximosEventos) 18 @foreach (var item in Model.ProximosEventos)
18 { 19 {
19 <tr> 20 <tr>
20 <td>@item.Fecha</td> 21 <td>@item.Fecha</td>
22 <td>@item.Duracion</td>
21 <td>@item.Titulo</td> 23 <td>@item.Titulo</td>
22 <td>@item.Estado</td> 24 <td>@item.Estado</td>
23 <td class="buttons"> 25 <td class="buttons">
24 @if (item.PuedeAgendar) 26 @if (item.PuedeAgendar)
25 { 27 {