Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Views/Perfil/Index.cshtml @ 277:7439d7a5f8d0
Warning HTML: Cambiado ALT por TITLE.
author | juanjose.montesdeocaarbos |
---|---|
date | Tue, 20 Dec 2011 08:28:33 -0300 |
parents | 1deccd6c3cb2 |
children |
rev | line source |
---|---|
112
0bca45e1e664
Pantalla de Perfil donde se puede asociar la cuenta de twitter al usuario existente
Nelo@Kenia.neluz.int
parents:
diff
changeset
|
1 @model AltNetHispano.Agendas.Web.Models.PerfilIndexModel |
0bca45e1e664
Pantalla de Perfil donde se puede asociar la cuenta de twitter al usuario existente
Nelo@Kenia.neluz.int
parents:
diff
changeset
|
2 <h2>Perfil</h2> |
168 | 3 <div id="content"> |
4 <p> | |
5 Hola @Model.DisplayName, tu mail registrado es @Html.DisplayFor(m=>m.Email), tu blog @Html.DisplayFor(m=>m.Blog) y estas tus cuentas registradas | |
6 </p> | |
7 <table> | |
8 <thead> | |
9 <tr> | |
10 <th>Proveedor</th> | |
11 <th>username</th> | |
12 <th>Acciones</th> | |
13 </tr> | |
14 </thead> | |
15 <tbody> | |
16 @foreach (var item in Model.Cuentas) | |
17 { | |
18 <tr> | |
19 <td>@item.IdentityProvider</td> | |
20 <td>@item.UserName</td> | |
21 <td class="buttons"> | |
22 @Html.ActionLink("Quitar", "Remove", new { identityProvider = item.IdentityProvider, userName = item.UserName }) | |
23 </td> | |
24 </tr> | |
25 } | |
26 </tbody> | |
27 </table> | |
28 </div> | |
112
0bca45e1e664
Pantalla de Perfil donde se puede asociar la cuenta de twitter al usuario existente
Nelo@Kenia.neluz.int
parents:
diff
changeset
|
29 |
168 | 30 <div class="buttons"> |
31 @Html.ActionLink("Asociar cuenta de Twitter", "AddTwitterAccount") | |
32 <!-- | |
33 <br/> | |
34 @Html.ActionLink("Asociar cuenta de Google", "AddGoogleAccount") | |
35 --> | |
179 | 36 @Html.ActionLink("Modificar datos", "Modificar") |
168 | 37 </div> |
115 | 38 <br/> |