view Agendas/trunk/src/Agendas.Web/Views/Shared/DefaultViewer.cshtml @ 294:0e616662a94b

Added tag v1.1.0 for changeset 2cf7143586fe
author nelopauselli
date Fri, 17 Feb 2012 14:28:05 -0300
parents 730b80afa70d
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>
}