Merge pull request #7175 from neilLasrado/develop
Student Attendance Tool
This commit is contained in:
20
erpnext/public/js/schools/student_button.html
Normal file
20
erpnext/public/js/schools/student_button.html
Normal file
@@ -0,0 +1,20 @@
|
||||
<div class="col-sm-3">
|
||||
<div class="checkbox {% if status %} text-muted {% endif %}">
|
||||
<label>
|
||||
<input
|
||||
type="checkbox"
|
||||
data-idx="{{idx}}"
|
||||
data-student="{{student}}"
|
||||
data-student-name="{{student_name}}"
|
||||
class="students-check"
|
||||
{% if status %}
|
||||
disabled="true"
|
||||
{% endif %}
|
||||
{% if status === "Present" %}
|
||||
checked
|
||||
{% endif %}
|
||||
>
|
||||
{{ idx }} - {{ student_name }}
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user