view Agendas/trunk/src/Agendas.Web/Views/Shared/DefaultEditor.cshtml @ 167:ea85bd893247

Ajustes menores de UI
author nelopauselli
date Sat, 06 Aug 2011 02:51:07 -0300
parents 23aaf98b8377
children 97e51ddeeb58
line wrap: on
line source

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

<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>

@using (Html.BeginForm())
{
    @Html.ValidationSummary(true, @LayoutResources.ValidationSummaryDefault)
    <div>
        <fieldset>
            <legend>@Html.GetLegendForModel()</legend>
            @Html.EditorForModel()
            <p>
                <input type="submit" value="@LayoutResources.SaveButton" />
                @Html.ActionLink(@LayoutResources.CancelButton, "Index")
            </p>
        </fieldset>
    </div>
}