@using NEducation.Code; @model NEducation.Models.IndividualModel @{ ViewBag.Title = "Index"; //Layout = "~/Views/Shared/_LayoutHome.cshtml"; } @**@ @**@ @using NEducation.Content.Texts @section navMenu{ @Lang.Home @Lang.Vocabulary @Lang.Grammar @*Music*@ @Lang.Listening @* @Lang.Ebook *@ } @{ var check = Model.history.listCourseHistory.Count == 0 ? false : true; var course = Session["individual_courseType"] as string; }

@Lang.Hi @Model.profileDetail.fullName @Lang.WelcomeBack

@Lang.YourCourses @*Các khoá bạn đang học*@

@{ if (check == true) { for (int i = 0; i < Model.history.listCourseHistory.Count; i++) { HistoryElement history = Model.history.listCourseHistory[i]; } } else {

@Lang.YouHaveNoCourse @*BẠN CHƯA CÓ KHÓA HỌC NÀO*@

@Lang.ChooseACourseInLibrary @*Hãy vào thư viện VOCA chọn một khóa học tiếng Anh để bắt đầu bạn nhé!*@

@Lang.EnteringLibrary
} }
@**@ @**@
@*
@Html.ActionLink("Back to List", "Index")
*@