A tracking application for teachers to ensure all students are accounted for during bus duty.
- The goal of this project was to prepare me for learning React.js by reinforcing skills for JavaScript/HTML/CSS and introducing the JavaScript ES6 support.
- Software displays all busses and their capacity status
- Software displays all students and driver for a selected bus
- Software displays a student name and attendence-status
- User updates student from absent to present
- User updates student from present to absent
- Software updates capacity status to full when all students are present
- Software updates capacity status to partial when some students are present
- Software updates capacity status to empty when no students are present
- User creates new bus with new id and driver
- User add students to bus with name
- Bus
- busId (String)
- capacity (String) - (EMPTY, PARTIAL, FULL)
- driver (String)
- students (Student Array)
- Student
- name (String)
- isPresent (boolean)