{% load static %}
{# NAV HEADER #}
{% comment %}
Include to add Previous and Next buttons to a workflow page. Must create a form with id "workflow-form" for the buttons to work.
Required Context:
previous_title(str): Title of the previous button.
next_title(str): Title of the next button.
finish_title(str): Title of next button when there is no next step.
previous_step(Step): The previous step.
next_step(Step): The next step.
{% endcomment %}
{% block workflow_actions %}
{% block reset_step_button %}
{% endblock %}
{% block previous_step_button %}
{% if previous_step %}
{% endif %}
{% endblock %}
{% block next_step_button %}
{% if next_step %}
{% else %}
{% endif %}
{% endblock %}
{% endblock %}