@using Weee.Models.Paramemter @using Resources @model Weee.Areas.Certification.ViewModels.CommentViewModel @{ Layout = null; } @Styles.Render("~/bootstrap/css") @Styles.Render("~/certification/css")
@using (Html.BeginForm("Save", "Comment", new { }, FormMethod.Post)) {
@Html.HiddenFor(model => model.CurrentComment.ID) @Html.HiddenFor(model => model.CurrentComment.LCAID) @Html.HiddenFor(model => model.CurrentComment.Category)

@Resource.Category

@Resource.Comment
@Resource.UpdateTime
@foreach (var comment in Model.History) {
@comment.UpdateTime
}
@Html.TextAreaFor(model => model.CurrentComment.CommentText, new { @class = "docs-textarea-width-mx form-control docs-input-default", rows = "5", placeholder = Resource.EnterComment})
@Model.CurrentComment.UpdateTime
@*CFT-24*@
@ViewBag.Message
if (Model.LcaStatus == Weee.Models.LCAStatus.Waiting) {
} }