comparison Agendas/trunk/src/Agendas.Web/Views/Historico/Index.cshtml @ 227:11545cc95491

Mostrar todos los ponentes en el histórico
author nelopauselli
date Wed, 28 Sep 2011 08:57:34 -0300
parents 85ddae313408
children a8f7c41e3b47
comparison
equal deleted inserted replaced
226:4d05b5883eac 227:11545cc95491
20 <tr> 20 <tr>
21 <td>@item.Numero</td> 21 <td>@item.Numero</td>
22 <td>@item.Fecha</td> 22 <td>@item.Fecha</td>
23 <td>@item.Tipo</td> 23 <td>@item.Tipo</td>
24 <td><a href="@item.Wiki">@item.Titulo</a></td> 24 <td><a href="@item.Wiki">@item.Titulo</a></td>
25 <td>@item.Ponente</td> 25 <td>
26 @foreach(var ponente in item.Ponentes) {
27 @ponente<br />
28 }
29 </td>
26 <td>@item.Duracion</td> 30 <td>@item.Duracion</td>
27 </tr> 31 </tr>
28 } 32 }
29 </tbody> 33 </tbody>
30 </table> 34 </table>