YNICTE/FO/Views/My/ExamPrint.cshtml

60 lines
2.6 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@model NP.Model.VMMy
@{
Layout = "~/Views/Shared/_LayoutPrint.cshtml";
}
<div style="text-align: center; padding: 10px 0; border: 1px solid #ddd; background-color: #ddd" class="printNonArea">
<div class="text-center">
<div style="color: red;">* 인쇄설정에서 머리글과 바닥글을 표시제외하고 배경이미지를 활성화 해주세요.</div>
<div style="padding: 10px 20px;">
<a href="#" title="인쇄" onclick="fnPrint();" style="border: 1px solid #238dfa; color: #238dfa; padding: 5px 20px;">인쇄</a>&nbsp;&nbsp;
<a href="#" title="취소" onclick="self.close();" style="border: 1px solid #000; color: #000; padding: 5px 20px;">취소</a>
</div>
</div>
</div>
<div id="print_area" class="mpgPopScroll" style="max-width: 680px; margin: 0 auto; position: relative;">
<div class="mpgpIdent">
<div class="mpgpIprofile">
<em style="background:url('/img/mypage/popup_profile_sample.jpg')no-repeat center center;"></em>
<h5>『@Model.ExamUser.exname』 자격시험 수험표</h5>
<table>
@*<tr>
<th>수험번호</th>
<td class="red">A132456789</td>
</tr>*@
<tr>
<th>응시등급</th>
<td class="red">@Model.ExamUser.gradename</td>
</tr>
<tr>
<th>성명</th>
<td>@Model.ExamUser.username</td>
</tr>
</table>
</div>
<table class="mpgpItable">
<tr>
<th>시험일시</th>
<td>@(Model.ExamUser.estime.ToString("yyyy. MM. dd"))(@(Model.ExamUser.estime.ToString("ddd", System.Globalization.CultureInfo.CreateSpecificCulture("ko-KR")))) @Model.ExamUser.estime.ToString("HH:mm") <span>@Model.ExamUser.eetime.ToString("HH:mm") (@Model.ExamUser.estime.AddMinutes(-30).ToString("HH:mm")까지 입실)</span></td>
</tr>
<tr>
<th>시험장소</th>
<td>@Model.ExamUser.elocation</td>
</tr>
</table>
<h5><span>(사)한국영남건설기술교육원장</span></h5>
</div><!-- clsPopCont -->
</div>
<div class="printNonArea" style="height: 85px;">&nbsp;</div>
@section scriptsHeader{
}
@section scripts{
<script>
$(document).ready(function () {
if (@Model.ExamUser.exno == 0) {
self.close();
}
});
</script>
}