view Agendas/trunk/src/Agendas.Web/Views/Perfil/Index.cshtml @ 148:c99636fbdc5f

Ticket 155: Agregar Nro de Orden, Tipo y Duración real en la pantalla de Histórico, similar a como es la página actual en altnethispano.org. Pendiente: Falta que tome la duración cargada.
author juanjose.montesdeocaarbos
date Tue, 02 Aug 2011 23:05:50 -0300
parents 62dc9fb3a03e
children 97e51ddeeb58
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")
<!--
<br/>
@Html.ActionLink("Asociar cuenta de Google", "AddGoogleAccount")
-->
<br/>