{% extends 'base.html' %} {% block header_button %}
{% if request.user.is_superuser %} {% if target_request.state == "COMPLETE" %} {% with args_filter="archive,"|addstr:request.user.id|addstr:","|addstr:target_request.id %} {% endwith %} {% endif %} {% if target_request.state == "ARCHIVED" %} {% with args_filter="unarchive,"|addstr:request.user.id|addstr:","|addstr:target_request.id %} {% endwith %} {% endif %} {% if target_request.state == "NEED_INFO" %} {% with args_filter="re_submit,"|addstr:request.user.id|addstr:","|addstr:target_request.id %} {% endwith %} {% endif %} {% endif %} {% with args_filter="cancel,"|addstr:request.user.id|addstr:","|addstr:target_request.id %} {% endwith %} {% if request.user.is_superuser %} {% with args_filter="need_info,"|addstr:request.user.id|addstr:","|addstr:target_request.id %} {% endwith %} {% with args_filter="reject,"|addstr:request.user.id|addstr:","|addstr:target_request.id %} {% endwith %} {% with args_filter="accept,"|addstr:request.user.id|addstr:","|addstr:target_request.id %} {% endwith %} {% with args_filter="process,"|addstr:request.user.id|addstr:","|addstr:target_request.id %} {% endwith %} {% endif %}
{% endblock %} {% block main %}

Details

  • ID{{ target_request.id }}
  • Instance{{ target_request.instance.name }}
  • Service{{ target_request.operation.service.name }}
  • Operation{{ target_request.operation.name }}
  • Operation type{{ target_request.operation.type }}
  • Request state{{ target_request.state }}
  • Instance state{{ target_request.instance.state }}
  • Requester{{ target_request.user.username }}
  • Date submitted{{ target_request.date_submitted }}
  • {% if target_request.date_complete %}
  • Date complete{{ target_request.date_complete }}
  • {% endif %} {% if target_request.date_archived %}
  • Date archived{{ target_request.date_archived }}
  • {% endif %} {% if request.user.is_superuser %}
  • Tower job {{ target_request.tower_job_id }}
  • {% endif %} {% if target_request.state == "FAILED" %}
  • Failure message{{ target_request.failure_message }}
  • {% endif %}
{% if request.user.is_superuser %}
{{ target_request.full_survey | pretty_json }}
{% else %}
{{ target_request.fill_in_survey | pretty_json }}
{% endif %}
Start
{% for approval_step in approval_steps %}
{% if approval_step.type == "ALL_OF_THEM" %} {% elif approval_step.type == "AT_LEAST_ONE" %} {% endif %}
{{ approval_step.status }}

{{ approval_step.name }}

{% endfor %}
{% if target_request.state == "REJECTED" %}Rejected{% else %} Approved{% endif %}
{% endblock %} {% block custom_script %} {% endblock %}