{% set page_group = "users" %} {% include 'components/head.html' %}
{% include 'components/nav-account.html' %}
{% include 'components/alerts.html' %}

{{box_title}}

{% for taskName, taskGroup in taskLists %}
{{ taskName }} ({{ taskGroup.tasks|length }})
{% if store.schedulingProvider == 'buyerkiosk' %}
Position:
Unassigned
{% endif %}
    {% for task in taskGroup.tasks %}
  • {% if task.priority == 1 %}{% elseif task.priority == 3 %}{% endif %}
    {{task.taskName}} {% if task.comment %} {{task.comment}} {% endif %}
  • {% endfor %}
{% endfor %}

Workbook Schedule Configuration

Configure when each task list becomes active in the Workbook dashboard. The list with the most recent start time that has passed will be shown. Incomplete tasks from earlier lists will carry over and display in red.

Loading schedule...
How it works:
  • Set start times for each list on each day of the week
  • The Workbook will show only the currently active list based on the current time
  • When switching to a new list, incomplete tasks from previous lists appear at the top in red
  • Different start times can be set for different days (e.g., later opening on weekends)
{% include 'components/footer.html' %}