{% extends "django_workflow_engine/emails/base.html" %} {% block title %}Action Required - {{ workflow_name }}{% endblock %} {% block content %}
Hello {% if recipient_name %}{{ recipient_name }}{% else %}there{% endif %},
Your attention is required for a workflow approval.
Workflow: {{ workflow_name }}
Object: {{ object_name }}
{% if stage_name %}Current Stage: {{ stage_name }}
{% endif %} {% if requester_name %}Requester: {{ requester_name }}
{% endif %} {% if action_description %}Action: {{ action_description }}
{% endif %} {% if due_date %}Due Date: {{ due_date }}
{% endif %}Please review and take the necessary action as soon as possible.
{% endblock %}