{% extends "legacy/response/oa_response.html" %} {% load i18n %} {% load tz %} {% block list_item %}
  • {% endblock %} {% block button %} {% endblock %} {% block title %} {% trans "Cancelled" %} {% endblock %} {% block body %}
    {% trans "Status" %}
    {% trans "Your submission was cancelled. " %}

    {% if workflow_cancellation.cancelled_by %} {% blocktrans with removed_datetime=workflow_cancellation.cancelled_at|timezone:"UTC"|date:"Y-m-d H:i e" removed_by_username=workflow_cancellation.cancelled_by %} Your submission has been cancelled by {{ removed_by_username }} on {{ removed_datetime }} {% endblocktrans %} {% else %} {% blocktrans with removed_datetime=workflow_cancellation.cancelled_at|timezone:"UTC"|date:"Y-m-d H:i e" %} Your submission was cancelled on {{ removed_datetime }} {% endblocktrans %} {% endif %}

    {% blocktrans with comments=workflow_cancellation.comments %} Comments: {{ comments }} {% endblocktrans %}

    {% endblock %}