@ViewBag.SideBarTitle
@if (ViewBag.IsFromEdit)
{
@Html.ActionLink("Return to Edit", "EditHistory", "Records", new { id = ViewBag.RecordId }, new { @class = "top_link" })
}
else if (ViewBag.IsFromCurrent)
{
@Html.ActionLink("Return to Current", "Current", "Records", new { id = ViewBag.RecordId }, new { @class = "top_link" })
}
else
{
@Html.ActionLink("Return To History", "History", "Records", null, new { @class = "top_link" })
}
Details
Placement Info
@Html.LabelFor(model => model.Variety)
@Html.DisplayFor(model => model.Variety)
@Html.LabelFor(model => model.Coordinates)
@Html.DisplayFor(model => model.Coordinates)
@Html.LabelFor(model => model.LotNumber)
@Html.DisplayFor(model => model.LotNumber)
@Html.LabelFor(model => model.FemaleLineCode)
@Html.DisplayFor(model => model.FemaleLineCode)
@Html.LabelFor(model => model.MaleLineCode)
@Html.DisplayFor(model => model.MaleLineCode)
@Html.LabelFor(model => model.FemaleLotNumber)
@Html.DisplayFor(model => model.FemaleLotNumber)
@Html.LabelFor(model => model.MaleLotNumber)
@Html.DisplayFor(model => model.MaleLotNumber)
Progress
@Html.LabelFor(model => model.CropStageFemale)
@Html.DisplayFor(model => model.CropStageFemale)
@Html.LabelFor(model => model.CropStageMale)
@Html.DisplayFor(model => model.CropStageMale)
@Html.LabelFor(model => model.GrossHarvestWeight)
@Html.DisplayFor(model => model.GrossHarvestWeight)
@Html.LabelFor(model => model.TentErectionDate)
@Html.DisplayFor(model => model.TentErectionDate)
@Html.LabelFor(model => model.TentRemovalDate)
@Html.DisplayFor(model => model.TentRemovalDate)
@Html.LabelFor(model => model.SwathingDate)
@Html.DisplayFor(model => model.SwathingDate)
@Html.LabelFor(model => model.HarvestDate)
@Html.DisplayFor(model => model.HarvestDate)
Comments
@Html.DisplayFor(m => m.Comments)