추가개발01/02_9
This commit is contained in:
parent
6304d2f5b7
commit
f838f54d08
|
|
@ -67,7 +67,13 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="line line-dashed line-lg pull-in"></div><div class="form-group">
|
<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>
|
<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>
|
||||||
<div class="line line-dashed line-lg pull-in"></div><div class="form-group">
|
<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>
|
<label class="col-sm-4 col-md-2 control-label req">제한시간</label>
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,9 @@
|
||||||
string exDate = "";
|
string exDate = "";
|
||||||
|
|
||||||
if (Model.LectEX.scdcmisno > 0) {
|
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 {
|
} 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>
|
<h3 class="lctTitle3">시험안내</h3>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue