
Create webpage for attendance taking
Source:R/make_attendance_dashboard.R
make_attendance_dashboard.Rdmake_attendance_dashboard() makes a clean webpage to speed the process of taking attendance at the start of class. While Banner requires loading five webpages to change tabs, choose the link for attendance, and select the term, course, and date, bannr's attendance dashboard links directly to the final step. Links to course rosters are also provided.
Arguments
- df
A table of course data, such as the one derived after
flatten_rosters(). This table needs to have columns that includecrn,catalog,course,days,start, andend.- filename
The path and file name for saving the HTML file.
Examples
if (FALSE) {
authorize() |>
get_rosters() |>
flatten_rosters() |>
make_attendance_dashboard("take-attendance.html")
}