comparison Agendas/trunk/src/Agendas.Web/Views/Historico/Index.cshtml @ 119:8fa58a79656a

Historico
author Nelo@Kenia.neluz.int
date Wed, 22 Jun 2011 09:49:07 -0300
parents
children c99636fbdc5f
comparison
equal deleted inserted replaced
118:b74734a1a755 119:8fa58a79656a
1 @model AltNetHispano.Agendas.Web.Models.HistoricoIndexModel
2 <h2>Histórico</h2>
3 <p>
4 Eventos ya realizados:
5 </p>
6 <table>
7 <thead>
8 <tr>
9 <th>Fecha</th>
10 <th>Evento</th>
11 <th>Ponente</th>
12 <th>Wiki</th>
13 </tr>
14 </thead>
15 <tbody>
16 @foreach (var item in Model.Items)
17 {
18 <tr>
19 <td>@item.Fecha</td>
20 <td>@item.Titulo</td>
21 <td>@item.Ponente</td>
22 <td>@item.Wiki</td>
23 </tr>
24 }
25 </tbody>
26 </table>