{% extends "./template.html" %} {% block content %} {% load static %}
{% csrf_token %} {{ request_for_change_form.media }}

New Request For Change

{% if not form_errors == "" %}
{{ form_errors }}
{% endif %} {% if rfc_results.rfc_status == 1 %} {% elif rfc_results.rfc_status == 2 %}
Status: Submitted
{% elif rfc_results.rfc_status == 3 %}
Status: Approved
{% elif rfc_results.rfc_status == 4 %}
Status: Started
{% elif rfc_results.rfc_status == 5 %}
Status: Finished
{% endif %}
{{ request_for_change_form.rfc_title }}
{{ request_for_change_form.rfc_type }}
{{ request_for_change_form.rfc_version_number }}
{{ request_for_change_form.rfc_implementation_start_date }}
{{ request_for_change_form.rfc_implementation_end_date }}
{{ request_for_change_form.rfc_implementation_release_date }}
{{ request_for_change_form.rfc_summary }}
{{ request_for_change_form.rfc_lead }}

Risk, Plan, and Implement

{{ request_for_change_form.rfc_priority }}
{{ request_for_change_form.rfc_risk }}
{{ request_for_change_form.rfc_impact }}
{{ request_for_change_form.rfc_risk_and_impact_analysis }}
{{ request_for_change_form.rfc_implementation_plan }}
{{ request_for_change_form.rfc_backout_plan }}
{{ request_for_change_form.rfc_test_plan }}

Document Uploads

Document Tree List

Loading...

Stakeholders

Please note: The request for change will email stakeholders automatically when;
  • The Request for Change is approved
  • The Request for Change has started
  • The Request for Change has finished
Connect Customer
Connect Organisation {% if organisation_stakeholders %}

Organisation Stakeholders

{% for row in organisation_stakeholders %} {% endfor %}
Organisation Name Organisation Website Organisation Email
{{ row.organisation_name }} {{ row.organisation_email }} {{ row.organisation_website }}
{% endif %} {% if customer_stakeholders %}

Customer Stakeholders

{% for row in customer_stakeholders %} {% endfor %}
Customer First Name Customer Last Name Customer Email
{{ row.customer_first_name }} {{ row.customer_last_name }} {{ row.customer_email }}
{% endif %}
{% if permission >= 3 %}

Assigned Groups

Loading add...
Loading list...
{% endif %}

Danger Zone

Please note:
  • Rejecting the Request for Change is permanment.
  • Requesting Approval will go through an approval process
  • Requesting for Approval will send an email to all group leaders
{% endblock %}