view Agendas/trunk/src/Agendas.Web/Views/Shared/DefaultViewer.cshtml @ 257:730b80afa70d

Ticket #191: Perfil de Usuarios
author juanjose.montesdeocaarbos
date Wed, 19 Oct 2011 09:19:20 -0300
parents
children
line wrap: on
line source

<h2>@Html.GetTitleForModel()</h2>
<p>
    @Html.GetDescriptionForModel()
</p>

@using (Html.BeginForm())
{
    <div>
        <fieldset>
            <legend>@Html.GetLegendForModel()</legend>
			<div id="content">
				@Html.DisplayForModel()
			</div>
<!--
            <div class="buttons">
                @Html.ActionLink(@LayoutResources.ReturnButton, "Index")
            </div>
-->
        </fieldset>
    </div>
}