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 @@
| 기수 | 유형 | 강좌명 | 분반 | @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)일) + } + | +