@model SoilModel

@Model.Title

@Html.LabelFor(m => m.Nitrogen)
@Model.Nitrogen 
@Html.LabelFor(m => m.Phosphorus)
@Model.Phosphorus 
@Html.LabelFor(m => m.Potassium)
@Model.Potassium 
@Html.LabelFor(m => m.Sulphur)
@Model.Sulphur 
@Html.LabelFor(m => m.Boron)
@Model.Boron 
@if (Model.Other != null) {

Other

@Html.LabelFor(m => m.Other.Type)
@Model.Other.Type 
@Html.LabelFor(m => m.Other.Value)
@Model.Other.Value 
}