|
|
Your Assignments for Tonight
|
|
Hi {{ recipient_name }},
|
|
{% if has_weekend_services %}
Here's your scheduled work for {{ date_formatted }}, including weekend services that can be completed through Sunday.
{% else %}
Here's your scheduled work for {{ date_formatted }}.
{% endif %}
|
{% if services %}
|
Services ({{ services|length }})
|
{% for service in services %}
|
{{ service.account_name }}
{% if service.is_weekend_service %}
WEEKEND
{% endif %}
|
|
{{ service.address }}
|
|
{% endfor %}
|
{% endif %}
{% if projects %}
|
Projects ({{ projects|length }})
|
{% for project in projects %}
|
{{ project.name }}
|
|
{{ project.affiliation_name }}{% if project.address %} • {{ project.address }}{% endif %}
|
|
{% endfor %}
|
{% endif %}
|
{% if has_weekend_services %}
Regular services are due by 8:00am tomorrow morning. Weekend services are due by Monday morning.
{% else %}
All of your completed work is due by 8:00am tomorrow morning.
{% endif %}
Please visit your dashboard to get started.
|
|
|