comparison Agendas/trunk/src/Agendas.Web/Views/Historico/Index.cshtml @ 148:c99636fbdc5f

Ticket 155: Agregar Nro de Orden, Tipo y Duración real en la pantalla de Histórico, similar a como es la página actual en altnethispano.org. Pendiente: Falta que tome la duración cargada.
author juanjose.montesdeocaarbos
date Tue, 02 Aug 2011 23:05:50 -0300
parents 8fa58a79656a
children a18d4d12fc36
comparison
equal deleted inserted replaced
147:5a1f7233aa5a 148:c99636fbdc5f
4 Eventos ya realizados: 4 Eventos ya realizados:
5 </p> 5 </p>
6 <table> 6 <table>
7 <thead> 7 <thead>
8 <tr> 8 <tr>
9 <th>Nro.</th>
9 <th>Fecha</th> 10 <th>Fecha</th>
11 <th>Tipo</th>
10 <th>Evento</th> 12 <th>Evento</th>
11 <th>Ponente</th> 13 <th>Ponente</th>
12 <th>Wiki</th> 14 <th>Duraci&oacute;n</th>
13 </tr> 15 </tr>
14 </thead> 16 </thead>
15 <tbody> 17 <tbody>
16 @foreach (var item in Model.Items) 18 @foreach (var item in Model.Items)
17 { 19 {
18 <tr> 20 <tr>
21 <td>@item.Numero</td>
19 <td>@item.Fecha</td> 22 <td>@item.Fecha</td>
20 <td>@item.Titulo</td> 23 <td>@item.Tipo</td>
24 <td><a href="@item.Wiki">@item.Titulo</a></td>
21 <td>@item.Ponente</td> 25 <td>@item.Ponente</td>
22 <td>@item.Wiki</td> 26 <td>@item.Duracion</td>
23 </tr> 27 </tr>
24 } 28 }
25 </tbody> 29 </tbody>
26 </table> 30 </table>