{% extends "django_workflow_engine/emails/base.html" %} {% block title %}Resubmission Required - {{ workflow_name }}{% endblock %} {% block content %}
Hello {% if recipient_name %}{{ recipient_name }}{% else %}there{% endif %},
A resubmission has been requested for your workflow.
Workflow: {{ workflow_name }}
Object: {{ object_name }}
{% if stage_name %}Current Stage: {{ stage_name }}
{% endif %} {% if resubmission_stage %}Resubmit to Stage: {{ resubmission_stage }}
{% endif %} {% if actor_name %}Requested by: {{ actor_name }}
{% endif %} {% if resubmission_comments %}Comments: {{ resubmission_comments }}
{% endif %} {% if due_date %}Due Date: {{ due_date }}
{% endif %}Please review the comments and resubmit the required information.
{% endblock %}