Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

app\layouts\schedule_listing.html

seamussmith edited this page Feb 9, 2022 · 5 revisions

Layout app/layouts/schedule_listing.html

Extends app/layouts/schedule_base.html

Base template for schedule listing pages. Handles logic for schedule management. All the blocks are children of a form that is responsible for sending data to timeslot management views.

block schedule_body

Body of the schedule. Provides the following v-scope:

{
    checked: Array.from(document.querySelectorAll('#timeslot-body input[type=checkbox]'))
                  .filter(x => x.checked)
                  .length,
    shiftClicked: []
}