61 lines
2.4 KiB
Plaintext
61 lines
2.4 KiB
Plaintext
|
|
@model NP.Model.VMLect
|
||
|
|
<form id="mform" method="post">
|
||
|
|
<section class="panel panel-default clearfix devsearch" data-cleartbody="tbody1">
|
||
|
|
@Html.Partial("./Partial/SearchCaption")
|
||
|
|
<div class="step-content">
|
||
|
|
<div class="step-pane active form-inline">
|
||
|
|
<div class="form-group">
|
||
|
|
교육일 @Html.Partial("./Partial/Date", Convert.ToDateTime(Model.stringval), new ViewDataDictionary { { "name", "stringval" } })
|
||
|
|
@Html.Partial("./Partial/Button", new NP.Model.Button() { Special = "search" })
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
<section class="panel panel-default">
|
||
|
|
<div class="table-responsive" id="excel1">
|
||
|
|
<table class="table table-striped b-t b-light">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th>구분</th>
|
||
|
|
<th>강좌명</th>
|
||
|
|
<th>회차명</th>
|
||
|
|
<th>강사</th>
|
||
|
|
<th>교육일시</th>
|
||
|
|
<th>QR인증</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody class="data" id="tbody1">
|
||
|
|
@foreach (var d in Model.CMInnings)
|
||
|
|
{
|
||
|
|
<tr>
|
||
|
|
<td>@d.tmname</td>
|
||
|
|
<td class="text-left">@d.cnameclassno</td>
|
||
|
|
<td class="text-left">@(d.iseq). @d.ititle</td>
|
||
|
|
<td>@d.username</td>
|
||
|
|
<td>@d.idateymd @string.Format("{0}:{1} ~ {2}:{3}", d.ist.Substring(0, 2), d.ist.Substring(2, 2), d.iet.Substring(0, 2), d.iet.Substring(2, 2))</td>
|
||
|
|
<td><a href="#" class="btn btn-select" onclick="att(@d.cmino)">인증</a></td>
|
||
|
|
</tr>
|
||
|
|
}
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</section>
|
||
|
|
</form>
|
||
|
|
<form id="dform" method="post" action="/croom/attoff">
|
||
|
|
@Html.Partial("./Partial/dform", Model, new ViewDataDictionary { { "preform", 1 } })
|
||
|
|
</form>
|
||
|
|
@section scriptsHeader{
|
||
|
|
@Html.Partial("./Partial/ScriptDate")
|
||
|
|
}
|
||
|
|
@section scripts{
|
||
|
|
<script>
|
||
|
|
$(document).ready(function () {
|
||
|
|
|
||
|
|
});
|
||
|
|
function att(cmino) {
|
||
|
|
setv("dform_longval", cmino);
|
||
|
|
$("#dform").submit();
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
}
|