comparison Agendas/trunk/src/Agendas.Web/Views/Perfil/Index.cshtml @ 112:0bca45e1e664

Pantalla de Perfil donde se puede asociar la cuenta de twitter al usuario existente
author Nelo@Kenia.neluz.int
date Sat, 11 Jun 2011 01:20:59 -0300
parents
children 0eac9a1c1a6c
comparison
equal deleted inserted replaced
111:90ce239cfa6d 112:0bca45e1e664
1 @model AltNetHispano.Agendas.Web.Models.PerfilIndexModel
2 <h2>Perfil</h2>
3 <p>
4 Hola @Model.DisplayName, estas son tus cuentas registradas
5 </p>
6 <table>
7 <thead>
8 <tr>
9 <th>Proveedor</th>
10 <th>username</th>
11 <th>Acciones</th>
12 </tr>
13 </thead>
14 <tbody>
15 @foreach (var item in Model.Cuentas)
16 {
17 <tr>
18 <td>@item.IdentityProvider</td>
19 <td>@item.UserName</td>
20 <td>
21 @Html.ActionLink("Quitar", "Remove", new { identityProvider = item.IdentityProvider, userName = item.UserName })
22 </td>
23 </tr>
24 }
25 </tbody>
26 </table>
27
28 <p>
29 @Html.ActionLink("Asociar cuenta de Twitter", "AddTwitterAccount")
30 </p>