@model Disco.Web.Areas.Config.Models.DeviceBatch.CreateModel @{ ViewBag.Title = Html.ToBreadcrumb("Configuration", MVC.Config.Config.Index(), "Device Batches", MVC.Config.DeviceBatch.Index(null), "Create"); } @using (Html.BeginForm()) {
Name: @Html.EditorFor(model => model.DeviceBatch.Name)
@Html.ValidationMessageFor(model => model.DeviceBatch.Name)
Purchase Date: @Html.EditorFor(model => model.DeviceBatch.PurchaseDate)
@Html.ValidationMessageFor(model => model.DeviceBatch.PurchaseDate)

}