@model Disco.Web.Areas.Config.Models.DeviceProfile.CreateModel @{ Authorization.RequireAll(Claims.Config.DeviceProfile.Create, Claims.Config.DeviceProfile.Configure); ViewBag.Title = Html.ToBreadcrumb("Configuration", MVC.Config.Config.Index(), "Device Profiles", MVC.Config.DeviceProfile.Index(null), "Create"); } @using (Html.BeginForm()) { @Html.AntiForgeryToken() @Html.ValidationSummary(false)
Name: @Html.TextBoxFor(model => model.Name)
@Html.ValidationMessageFor(model => model.Name)
Short Name: @Html.TextBoxFor(model => model.ShortName)
@Html.ValidationMessageFor(model => model.ShortName)
Description: @Html.TextBoxFor(model => model.Description)
@Html.ValidationMessageFor(model => model.Description)

}