@model MVCUI.Models.MatchupMVCModel @using (Html.BeginForm("EditTournamentMatchup", "Tournaments")) { @Html.AntiForgeryToken() @Html.HiddenFor(model => model.MatchupId) @Html.HiddenFor(model => model.FirstTeamMatchupEntryId) @Html.HiddenFor(model => model.SecondTeamMatchupEntryId) @Html.HiddenFor(model => model.TournamentId) @Html.HiddenFor(model => model.RoundNumber)
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.EditorFor(model => model.FirstTeamScore, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.FirstTeamScore, "", new { @class = "text-danger" })
@Html.EditorFor(model => model.SecondTeamScore, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.SecondTeamScore, "", new { @class = "text-danger" })

}