2021-09-09 06:29:31 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>Group_Teach_View</title>
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
|
|
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
|
|
|
|
<link rel="stylesheet" href="/static/allpages.css">
|
|
|
|
<link rel="stylesheet" href="/static/login.css">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2021-09-10 07:30:39 -07:00
|
|
|
<div class="container">
|
|
|
|
<h1>Group_Teach_View</h1>
|
|
|
|
<h2>{{cclass['category']}}: {{cclass['class_id']}}: {{cclass['name']}}</h2>
|
|
|
|
<h2>Status: {{status}} ({{currDate}})</h2>
|
|
|
|
<form action="/manage/date" id="dateSelForm" method="post">
|
|
|
|
<select name="date" id="date" class="form-select" onchange="chgDate(this);">
|
|
|
|
{% for date in dates %}
|
|
|
|
{% if date == currDate %}
|
|
|
|
<option value="{{date}}" selected="selected">{{date}}</option>
|
|
|
|
{% else %}
|
|
|
|
<option value="{{date}}">{{date}}</option>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</form>
|
|
|
|
{% if status == 1 %}
|
|
|
|
<div class="alert alert-warning" role="alert">
|
|
|
|
Already Sumitted!
|
2021-09-09 06:29:31 -07:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
2021-09-10 07:30:39 -07:00
|
|
|
{% if status == 0 %}
|
|
|
|
<form action="/manage/group_teach_publish" id="attendanceData" method="post">
|
|
|
|
<input type="hidden" name="date" value="{{currDate}}">
|
|
|
|
<input type="hidden" name="signatureData" value="">
|
|
|
|
<div class="col">
|
|
|
|
<div class="row title">
|
|
|
|
<div class="col">Grade</div>
|
|
|
|
<div class="col">Class Code</div>
|
|
|
|
<div class="col">Number</div>
|
|
|
|
<div class="col">Name</div>
|
|
|
|
<div class="col">Eng Name</div>
|
|
|
|
<div class="col">Attendance (Check Absent)</div>
|
|
|
|
</div>
|
|
|
|
{% if data != None %}
|
|
|
|
{% for grade in all_stud_list %}
|
|
|
|
{% for homeroom in all_stud_list[grade] %}
|
|
|
|
{% for student in all_stud_list[grade][homeroom] %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">{{grade}}</div>
|
|
|
|
<div class="col">{{homeroom}}</div>
|
|
|
|
<div class="col">{{ student }}</div>
|
|
|
|
<div class="col">{{ all_stud_list[grade][homeroom][student]['name'] }}</div>
|
|
|
|
<div class="col">{{ all_stud_list[grade][homeroom][student]['eng_name'] }}</div>
|
|
|
|
<div class="col"><input type="checkbox" name="{{grade}}^{{homeroom}}^{{student}}"></div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
<h3>Please Sign Below</h3>
|
|
|
|
<div class="forSign"><canvas id="signature_pad"></canvas></div>
|
|
|
|
<button class="btn btn-secondary" type="button" onclick="signaturePad.clear()">Clear Signature</button>
|
|
|
|
<button class="btn btn-primary" type="button" onclick="submitForm()">Submit</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/signature_pad@2.3.2/dist/signature_pad.min.js"></script>
|
|
|
|
<script>
|
|
|
|
var canvas = document.getElementById("signature_pad");
|
|
|
|
var signaturePad = new SignaturePad(canvas);
|
|
|
|
function resizeCanvas() {
|
|
|
|
var ratio = Math.max(window.devicePixelRatio || 1, 1);
|
|
|
|
canvas.width = canvas.offsetWidth * ratio;
|
|
|
|
canvas.height = canvas.offsetHeight * ratio;
|
|
|
|
canvas.getContext("2d").scale(ratio, ratio);
|
|
|
|
signaturePad.clear(); // otherwise isEmpty() might return incorrect value
|
|
|
|
}
|
|
|
|
window.addEventListener("resize", resizeCanvas);
|
|
|
|
resizeCanvas();
|
|
|
|
function submitForm() {
|
|
|
|
if (!signaturePad.isEmpty()) {
|
|
|
|
signaturePad.off();
|
|
|
|
var data = signaturePad.toDataURL('image/png');
|
|
|
|
document.getElementsByName('signatureData')[0].value = data;
|
|
|
|
document.getElementById('attendanceData').submit();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
alert("Please sign first");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
{% endif %}
|
|
|
|
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
|
|
|
|
<div id="loading" style="text-align:center; width:100%; display:none;"><img src="/static/loading.gif" alt=""
|
|
|
|
style="height:100%;" />
|
2021-09-09 06:29:31 -07:00
|
|
|
</div>
|
2021-09-10 07:30:39 -07:00
|
|
|
<script>
|
|
|
|
function loadingAnimation() {
|
|
|
|
$("div.container").hide();
|
|
|
|
$('#loading').show();
|
|
|
|
}
|
|
|
|
function chgDate(sel) {
|
|
|
|
loadingAnimation();
|
|
|
|
document.getElementById('dateSelForm').submit();
|
|
|
|
}
|
|
|
|
</script>
|
2021-09-09 06:29:31 -07:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|