@model Sevomin.Models.DovominViewModel @{ ViewBag.Title = "ویرایش پروفایل"; } @Html.Partial("PostResult", ViewBag.Result as Sevomin.Models.PostResultViewModel) @using (Html.BeginForm("ProfileDovomin", "Account", FormMethod.Post, new { role = "form", @class = "assess-inputs", enctype = "multipart/form-data" })) {
@Html.LabelFor(model => model.EnglishResume) @if (!string.IsNullOrWhiteSpace(Model.EnglishResume)) { فایل رزومه انگلیسی }
@Html.LabelFor(model => model.PersianResume) @if (!string.IsNullOrWhiteSpace(Model.PersianResume)) { فایل رزومه فارسی }
@Html.LabelFor(model => model.Description) @Html.TextAreaFor(model => model.Description, new { @class = "form-control" })
@Html.LabelFor(model => model.FirstName) @Html.TextBoxFor(model => model.FirstName, new { @class = "form-control" })
@Html.LabelFor(model => model.LastName) @Html.TextBoxFor(model => model.LastName, new { @class = "form-control" })
@Html.LabelFor(model => model.JalaliBirthDate) @Html.TextBoxFor(model => model.JalaliBirthDate, new { @class = "form-control datepickerify" })
سلام چطورین؟
@foreach (var category in Model.Parameters.GroupBy(m => m.GroupName)) {

@category.Key

@foreach (var item in category) { @Html.Partial("DovominParameterViewModel", item) }
}
}