추가개발01/02_9

This commit is contained in:
김한진 2026-01-02 17:32:24 +09:00
parent 6304d2f5b7
commit f838f54d08
2 changed files with 9 additions and 3 deletions

View File

@ -67,7 +67,13 @@
</div>
<div class="line line-dashed line-lg pull-in"></div><div class="form-group">
<label class="col-sm-4 col-md-2 control-label req">출석률</label>
<div class="col-sm-8 col-md-10">@Html.TextBoxFor(m => m.CMEX.econdition, new { @Value = (Model.CMEX.econdition == 0 ? 90 : Model.CMEX.econdition), @class = "form-control disp-init int nocomma text-center", @maxlength = "3", @style = "width: 80px;", @Name = "vm.CMEX.econdition" }) % 이상</div>
<div class="col-sm-8 col-md-10">
@if (Model.CMEX.exno > 0) {
<text>@Html.TextBoxFor(m => m.CMEX.econdition, new { @Value = Model.CMEX.econdition, @class = "form-control disp-init int nocomma text-center", @maxlength = "3", @style = "width: 80px;", @Name = "vm.CMEX.econdition" }) % 이상</text>
} else {
<text>@Html.TextBoxFor(m => m.CMEX.econdition, new { @Value = (Model.CMEX.econdition == 0 ? 90 : Model.CMEX.econdition), @class = "form-control disp-init int nocomma text-center", @maxlength = "3", @style = "width: 80px;", @Name = "vm.CMEX.econdition" }) % 이상</text>
}
</div>
</div>
<div class="line line-dashed line-lg pull-in"></div><div class="form-group">
<label class="col-sm-4 col-md-2 control-label req">제한시간</label>

View File

@ -3,9 +3,9 @@
string exDate = "";
if (Model.LectEX.scdcmisno > 0) {
exDate = Model.LectEX.lectcdt.ToString("yyyy-MM-dd 00:00") + " ~ " + (Model.LectEX.testedate != null ? Convert.ToDateTime(Model.LectEX.testedate).ToString("yyyy-MM-dd hh:mm") : "") + "까지(진도율 " + Model.LectEX.econdition + "%이상 응시가능)";
exDate = Model.LectEX.lectcdt.ToString("yyyy-MM-dd 00:00") + " ~ " + (Model.LectEX.testedate != null ? Convert.ToDateTime(Model.LectEX.testedate).ToString("yyyy-MM-dd HH:mm") : "") + "까지(진도율 " + Model.LectEX.econdition + "%이상 응시가능)";
} else {
exDate = Model.LectEX.lectcdt.ToString("yyyy-MM-dd 00:00") + " ~ " + Model.LectEX.edate.Value.ToString("yyyy-MM-dd hh:mm") + "까지(진도율 " + Model.LectEX.econdition + "%이상 응시가능)";
exDate = Model.LectEX.lectcdt.ToString("yyyy-MM-dd 00:00") + " ~ " + Model.LectEX.edate.Value.ToString("yyyy-MM-dd HH:mm") + "까지(진도율 " + Model.LectEX.econdition + "%이상 응시가능)";
}
}
<h3 class="lctTitle3">시험안내</h3>