{% extends "base.html" %} {% block title %}New request — MartinhalApprovalFlow{% endblock %} {% block content %}

Send a request for approval

Pick a workflow, write your message, and it goes straight to that workflow's approver.

{% if workflows %}
{% else %}

You don't have access to any workflow yet. Ask an administrator to grant you access.

{% endif %} {% if my_requests %}

Your recent requests

{% for r in my_requests %} {% endfor %}
#WorkflowSubjectStatusSent
{{ r.id }} {{ r.wf_name }} {{ r.subject }} {{ r.status }} {{ r.created_at }}
{% endif %} {% endblock %}