Mercurial > altnet-hispano
view 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 |
line wrap: on
line source
@model AltNetHispano.Agendas.Web.Models.PerfilIndexModel <h2>Perfil</h2> <p> Hola @Model.DisplayName, estas son tus cuentas registradas </p> <table> <thead> <tr> <th>Proveedor</th> <th>username</th> <th>Acciones</th> </tr> </thead> <tbody> @foreach (var item in Model.Cuentas) { <tr> <td>@item.IdentityProvider</td> <td>@item.UserName</td> <td> @Html.ActionLink("Quitar", "Remove", new { identityProvider = item.IdentityProvider, userName = item.UserName }) </td> </tr> } </tbody> </table> <p> @Html.ActionLink("Asociar cuenta de Twitter", "AddTwitterAccount") </p>