Skip to contents

make_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.

Usage

make_attendance_dashboard(df, filename = "attendance-dashboard.html")

Arguments

df

A table of course data, such as the one derived after flatten_rosters(). This table needs to have columns that include crn, catalog, course, days, start, and end.

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")
}