diff --git a/BO/Views/croom/cmlects.cshtml b/BO/Views/croom/cmlects.cshtml index 3295735..1f792a6 100644 --- a/BO/Views/croom/cmlects.cshtml +++ b/BO/Views/croom/cmlects.cshtml @@ -10,12 +10,22 @@
- @(Model.CM.rsrename) (@(Model.CM.sssename)) + @(Model.CM.rsrename) @if (Model.CM.retimeymd != "2099-12-31") { - (@(Model.CM.ssseterm)일) + + (@(Model.CM.sssename)) + (@(Model.CM.ssseterm)일) + } -
+ else + { + + / (@(Model.CM.studydays)일) + + } + +
diff --git a/BO/Views/croom/grade.cshtml b/BO/Views/croom/grade.cshtml index 22b788f..781cbb6 100644 --- a/BO/Views/croom/grade.cshtml +++ b/BO/Views/croom/grade.cshtml @@ -2,7 +2,18 @@ - + + +
기수 | 유형 | 강좌명 | 분반@string.Format("{0} | {1} | {2} | {3}반", Model.CM.tmname, Model.CM.cmno + "." + Model.CM.cshapename, Model.CM.cname, Model.CM.classno)
신청기간(교육기간)@string.Format("{0} ~ {1} ({2})", Model.CM.rstime ==null ? "" : Model.CM.rstime.Value.ToShortDateString(), Model.CM.retime ==null ? "" : Model.CM.retime.Value.ToShortDateString(), Model.CM.cshape == 1 ? Model.CM.sstime==null ? "" : Model.CM.sstime.Value.ToShortDateString() : string.Format("{0}부터 {1}일간", Model.CM.sstime==null?"": Model.CM.sstime.Value.ToShortDateString(), Model.CM.ssseterm))
신청기간(교육기간) + @if (Model.CM.retimeymd != "2099-12-31") + { + @string.Format("{0} ~ {1} ({2})", Model.CM.rstime == null ? "" : Model.CM.rstime.Value.ToShortDateString(), Model.CM.retime == null ? "" : Model.CM.retime.Value.ToShortDateString(), Model.CM.cshape == 1 ? Model.CM.sstime == null ? "" : Model.CM.sstime.Value.ToShortDateString() : string.Format("{0}부터 {1}일간", Model.CM.sstime == null ? "" : Model.CM.sstime.Value.ToShortDateString(), Model.CM.ssseterm)) + } + else + { + 상시 / (@(Model.CM.studydays)일) + } +