{% extends "django_workflow_engine/emails/base.html" %} {% block title %}Workflow Delegated - {{ workflow_name }}{% endblock %} {% block content %}
Hello {% if recipient_name %}{{ recipient_name }}{% else %}there{% endif %},
A workflow approval has been delegated to you.
Workflow: {{ workflow_name }}
Object: {{ object_name }}
{% if stage_name %}Stage: {{ stage_name }}
{% endif %} {% if delegated_by %}Delegated by: {{ delegated_by }}
{% endif %} {% if requester_name %}Original Requester: {{ requester_name }}
{% endif %} {% if delegation_reason %}Reason: {{ delegation_reason }}
{% endif %} {% if due_date %}Due Date: {{ due_date }}
{% endif %}Please review and take the necessary action on this workflow.
{% endblock %}