{% extends "django_workflow_engine/emails/base.html" %} {% block title %}Workflow Approved - {{ workflow_name }}{% endblock %} {% block content %}

✅ Workflow Approved

Hello {% if recipient_name %}{{ recipient_name }}{% else %}there{% endif %},

Good news! Your workflow has been approved.

Workflow: {{ workflow_name }}

Object: {{ object_name }}

{% if stage_name %}

Stage: {{ stage_name }}

{% endif %} {% if actor_name %}

Approved by: {{ actor_name }}

{% endif %} {% if comments %}

Comments: {{ comments }}

{% endif %}
{% if object_link %}

View Details

{% endif %}

The workflow will now progress to the next stage.

{% endblock %}