Merge pull request #7175 from neilLasrado/develop

Student Attendance Tool
This commit is contained in:
Nabin Hait
2016-12-12 15:03:59 +05:30
committed by GitHub
12 changed files with 242 additions and 288 deletions

View 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>