YNICTE/FO/Views/CRoom/Grade.cshtml

68 lines
1.9 KiB
Plaintext

@model NP.Model.VMCRoom
@{
}
<h3 class="grdTitle">수료여부 : <span>@(Model.Lect.iscomplete == null ? "처리중" : Model.Lect.iscompletename)</span></h3>
<table class="evaTable">
<thead>
<tr>
<th>구분</th>
<th>진도율</th>
<th>진행평가</th>
<th>최종평가</th>
<th>과제평가</th>
<th>토론평가</th>
<th>총점</th>
</tr>
</thead>
<tbody>
<tr>
<td>평가비율</td>
<td>@(Model.Lect.aportion)%</td>
<td>@(Model.Lect.mportion)%</td>
<td>@(Model.Lect.fportion)%</td>
<td>@(Model.Lect.sportion)%</td>
<td>@(Model.Lect.dportion)%</td>
<td class="red">100%</td>
</tr>
<tr>
<td>수료기준</td>
<td>@(Model.Lect.acut)%이상</td>
<td>@(Model.Lect.mcut)%이상</td>
<td>@(Model.Lect.fcut)%이상</td>
<td>@(Model.Lect.scut)%이상</td>
<td>@(Model.Lect.dcut)%이상</td>
<td class="red">@(Model.Lect.cut)점이상</td>
</tr>
<tr>
<td>나의성적</td>
@if (Model.Lect.iscomplete == null)
{
<td colspan="6">공개전</td>
}
else
{
<td>@(Model.Lect.attrate)%(@(Model.Lect.attrate)점)</td>
<td>@(Model.Lect.ex0lectpoint)점</td>
<td>@(Model.Lect.ex1lectpoint)점</td>
<td>@(Model.Lect.sd0lectpoint)점</td>
<td>@(Model.Lect.sd1lectpoint)점</td>
<td class="red">@(Model.Lect.apoint + Model.Lect.mpoint + Model.Lect.fpoint + Model.Lect.spoint + Model.Lect.dpoint)점</td>
}
</tr>
</tbody>
</table>
@section styles{
}
@section scriptsHeader{
}
@section scripts{
<script>
$(document).ready(function () {
});
</script>
}