{"id":27399782,"date":"2026-04-21T15:08:46","date_gmt":"2026-04-21T05:08:46","guid":{"rendered":"https:\/\/nsw.nteu.au\/council\/?page_id=27399782"},"modified":"2026-05-14T14:30:15","modified_gmt":"2026-05-14T04:30:15","slug":"western-sydney-university-2026-all-staff-survey","status":"publish","type":"page","link":"https:\/\/nsw.nteu.au\/council\/western-sydney-university-2026-all-staff-survey\/","title":{"rendered":"Western Sydney University &#8211; 2026 All Staff Survey"},"content":{"rendered":"<div class=\"et_pb_section_0 et_pb_section et_section_regular et_block_section\">\n<div class=\"et_pb_row_0 et_pb_row et_block_row\">\n<div class=\"et_pb_column_0 et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_0 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><p>Western Sydney University NTEU Branch<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_text_1 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module preset--module--divi-text--6166d1a6-dfde-4203-92ad-21bf9687c60f\"><div class=\"et_pb_text_inner\"><h2 class=\"p1\">2026 All Staff Survey<\/h2>\n<p>The NTEU is launching its own all-staff survey of Western in 2026.<\/p>\n<p>How are you and your colleagues coping? What is the state of the institution as you see it? What needs to be done to repair it? The survey consists of 20 questions, and should take you just ten minutes to complete. But by submitting your responses you may make a measurable difference to the future of the University.<\/p>\n<p>We have worded the questions and possible responses as objectively and responsibly as possible. We\u2019re not wanting to \u2018lead\u2019 or \u2018push-poll\u2019 people in their responses. When you start the survey you will be prompted for a valid University email address, to ensure nobody responds more than once. But the response process and the validation process have been kept rigorously separate. Your responses are strictly confidential.<\/p>\n<p class=\"p3\">\n<p class=\"p3\"><a href=\"https:\/\/podcastaddict.com\/podcast\/nteu-usyd-bargaining-podcast\/6939165\"><\/a><\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_1 et_pb_section et_section_regular et_block_section\">\n<div class=\"et_pb_row_1 et_pb_row et_block_row\">\n<div class=\"et_pb_column_1 et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n\n\r\n<div class=\"et_pb_with_border et_pb_module et_d4_element el_gravity_forms_styler el_gravity_forms_styler_0\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module_inner\">\n\t\t\t\t\t<div class=\"el_gravity_forms_styler_wrapper\"><script>\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 4.0 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform-theme gform-theme--foundation gform-theme--framework gform-theme--orbital' data-form-theme='orbital' data-form-index='0' id='gform_wrapper_6' style='display:none'><style>#gform_wrapper_6[data-form-index=\"0\"].gform-theme{--gf-color-primary: #204ce5;--gf-color-primary-rgb: 32, 76, 229;--gf-color-primary-contrast: #fff;--gf-color-primary-contrast-rgb: 255, 255, 255;--gf-color-primary-darker: #001AB3;--gf-color-primary-lighter: #527EFF;--gf-color-secondary: #fff;--gf-color-secondary-rgb: 255, 255, 255;--gf-color-secondary-contrast: #112337;--gf-color-secondary-contrast-rgb: 17, 35, 55;--gf-color-secondary-darker: #F5F5F5;--gf-color-secondary-lighter: #FFFFFF;--gf-color-out-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-out-ctrl-light-rgb: 17, 35, 55;--gf-color-out-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-out-ctrl-light-lighter: #F5F5F5;--gf-color-out-ctrl-dark: #585e6a;--gf-color-out-ctrl-dark-rgb: 88, 94, 106;--gf-color-out-ctrl-dark-darker: #112337;--gf-color-out-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-color-in-ctrl: #fff;--gf-color-in-ctrl-rgb: 255, 255, 255;--gf-color-in-ctrl-contrast: #112337;--gf-color-in-ctrl-contrast-rgb: 17, 35, 55;--gf-color-in-ctrl-darker: #F5F5F5;--gf-color-in-ctrl-lighter: #FFFFFF;--gf-color-in-ctrl-primary: #204ce5;--gf-color-in-ctrl-primary-rgb: 32, 76, 229;--gf-color-in-ctrl-primary-contrast: #fff;--gf-color-in-ctrl-primary-contrast-rgb: 255, 255, 255;--gf-color-in-ctrl-primary-darker: #001AB3;--gf-color-in-ctrl-primary-lighter: #527EFF;--gf-color-in-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-in-ctrl-light-rgb: 17, 35, 55;--gf-color-in-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-in-ctrl-light-lighter: #F5F5F5;--gf-color-in-ctrl-dark: #585e6a;--gf-color-in-ctrl-dark-rgb: 88, 94, 106;--gf-color-in-ctrl-dark-darker: #112337;--gf-color-in-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-radius: 3px;--gf-font-size-secondary: 14px;--gf-font-size-tertiary: 13px;--gf-icon-ctrl-number: url(\"data:image\/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 0C4.26522 5.96046e-08 4.51957 0.105357 4.70711 0.292893L7.70711 3.29289C8.09763 3.68342 8.09763 4.31658 7.70711 4.70711C7.31658 5.09763 6.68342 5.09763 6.29289 4.70711L4 2.41421L1.70711 4.70711C1.31658 5.09763 0.683417 5.09763 0.292893 4.70711C-0.0976311 4.31658 -0.097631 3.68342 0.292893 3.29289L3.29289 0.292893C3.48043 0.105357 3.73478 0 4 0ZM0.292893 9.29289C0.683417 8.90237 1.31658 8.90237 1.70711 9.29289L4 11.5858L6.29289 9.29289C6.68342 8.90237 7.31658 8.90237 7.70711 9.29289C8.09763 9.68342 8.09763 10.3166 7.70711 10.7071L4.70711 13.7071C4.31658 14.0976 3.68342 14.0976 3.29289 13.7071L0.292893 10.7071C-0.0976311 10.3166 -0.0976311 9.68342 0.292893 9.29289Z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-icon-ctrl-select: url(\"data:image\/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.292893C0.683417 -0.097631 1.31658 -0.097631 1.70711 0.292893L5 3.58579L8.29289 0.292893C8.68342 -0.0976311 9.31658 -0.0976311 9.70711 0.292893C10.0976 0.683417 10.0976 1.31658 9.70711 1.70711L5.70711 5.70711C5.31658 6.09763 4.68342 6.09763 4.29289 5.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683418 0.292893 0.292893Z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-icon-ctrl-search: url(\"data:image\/svg+xml,%3Csvg width='640' height='640' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath d='M256 128c-70.692 0-128 57.308-128 128 0 70.691 57.308 128 128 128 70.691 0 128-57.309 128-128 0-70.692-57.309-128-128-128zM64 256c0-106.039 85.961-192 192-192s192 85.961 192 192c0 41.466-13.146 79.863-35.498 111.248l154.125 154.125c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0L367.248 412.502C335.862 434.854 297.467 448 256 448c-106.039 0-192-85.962-192-192z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-label-space-y-secondary: var(--gf-label-space-y-md-secondary);--gf-ctrl-border-color: #686e77;--gf-ctrl-size: var(--gf-ctrl-size-md);--gf-ctrl-label-color-primary: #112337;--gf-ctrl-label-color-secondary: #112337;--gf-ctrl-choice-size: var(--gf-ctrl-choice-size-md);--gf-ctrl-checkbox-check-size: var(--gf-ctrl-checkbox-check-size-md);--gf-ctrl-radio-check-size: var(--gf-ctrl-radio-check-size-md);--gf-ctrl-btn-font-size: var(--gf-ctrl-btn-font-size-md);--gf-ctrl-btn-padding-x: var(--gf-ctrl-btn-padding-x-md);--gf-ctrl-btn-size: var(--gf-ctrl-btn-size-md);--gf-ctrl-btn-border-color-secondary: #686e77;--gf-ctrl-btn-bg-color-hover-tertiary: #EBEBEB;--gf-field-img-choice-size: var(--gf-field-img-choice-size-md);--gf-field-img-choice-card-space: var(--gf-field-img-choice-card-space-md);--gf-field-img-choice-check-ind-size: var(--gf-field-img-choice-check-ind-size-md);--gf-field-img-choice-check-ind-icon-size: var(--gf-field-img-choice-check-ind-icon-size-md);--gf-field-pg-steps-number-color: rgba(17, 35, 55, 0.8);}<\/style><style>#gform_wrapper_6[data-form-index=\"0\"].gform-theme{--gf-survey-field-likert-row-odd-bg-color: rgb(17,35,55,0.08);--gf-survey-icon-control-rank: url(\"data:image\/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 0C4.26522 5.96046e-08 4.51957 0.105357 4.70711 0.292893L7.70711 3.29289C8.09763 3.68342 8.09763 4.31658 7.70711 4.70711C7.31658 5.09763 6.68342 5.09763 6.29289 4.70711L4 2.41421L1.70711 4.70711C1.31658 5.09763 0.683417 5.09763 0.292893 4.70711C-0.0976311 4.31658 -0.097631 3.68342 0.292893 3.29289L3.29289 0.292893C3.48043 0.105357 3.73478 0 4 0ZM0.292893 9.29289C0.683417 8.90237 1.31658 8.90237 1.70711 9.29289L4 11.5858L6.29289 9.29289C6.68342 8.90237 7.31658 8.90237 7.70711 9.29289C8.09763 9.68342 8.09763 10.3166 7.70711 10.7071L4.70711 13.7071C4.31658 14.0976 3.68342 14.0976 3.29289 13.7071L0.292893 10.7071C-0.0976311 10.3166 -0.0976311 9.68342 0.292893 9.29289Z' fill='%23112337'\/%3E%3C\/svg%3E\");}<\/style><div id='gf_6' class='gform_anchor' tabindex='-1'><\/div>\n                        <div class='gform_heading'>\n                            <p class='gform_description'><\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data' target='gform_ajax_frame_6' id='gform_6'  action='\/council\/wp-json\/wp\/v2\/pages\/27399782#gf_6' data-formid='6' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_6' class='gform_fields top_label form_sublabel_above description_below validation_below'><div id=\"field_6_2\" class=\"gfield gfield--type-email gfield--input-type-email gfield_contains_required field_sublabel_above gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_6_2'><span class='gform-field-label__text'>Email<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_2' id='input_6_2' type='email' value='' class='medium'    aria-required=\"true\" aria-invalid=\"false\" aria-describedby=\"gfield_description_6_2\" autocomplete=\"email\"\/>\n                        <\/div><div class='gfield_description' id='gfield_description_6_2'>Please enter a valid WSU email address. Your email address will not be shared with anyone or be used to identify any of your responses in this survey.<\/div><\/div><div id=\"field_6_11\" class=\"gfield gfield--type-survey gfield--input-type-likert gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gsurvey-survey-field \"  data-field-class=\"gsurvey-survey-field\" ><label class='gfield_label gform-field-label' ><span class='gform-field-label__text'>In light of the changes made during Reset in 2025, how well are you coping in your job right now?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_likert'><table aria-label='In light of the changes made during Reset in 2025, how well are you coping in your job right now?' class='gsurvey-likert' id='input_6_11'><thead><tr><th id='likert_col_1_6_11' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Very poorly<\/th><th id='likert_col_2_6_11' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Poorly<\/th><th id='likert_col_3_6_11' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Neutral<\/th><th id='likert_col_4_6_11' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Well<\/th><th id='likert_col_5_6_11' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Very Well<\/th><\/tr><\/thead><tbody><tr><td data-label='Very poorly' class='gsurvey-likert-choice'><input name='input_11' type='radio' value='glikertcol1155f01cdf'  id='choice_6_11_1'    aria-labelledby='likert_col_1_6_11'\/><\/td><td data-label='Poorly' class='gsurvey-likert-choice'><input name='input_11' type='radio' value='glikertcol11dfa44d10'  id='choice_6_11_2'    aria-labelledby='likert_col_2_6_11'\/><\/td><td data-label='Neutral' class='gsurvey-likert-choice'><input name='input_11' type='radio' value='glikertcol11358b8ecf'  id='choice_6_11_3'    aria-labelledby='likert_col_3_6_11'\/><\/td><td data-label='Well' class='gsurvey-likert-choice'><input name='input_11' type='radio' value='glikertcol11c522b458'  id='choice_6_11_4'    aria-labelledby='likert_col_4_6_11'\/><\/td><td data-label='Very Well' class='gsurvey-likert-choice'><input name='input_11' type='radio' value='glikertcol11fcc374ae'  id='choice_6_11_5'    aria-labelledby='likert_col_5_6_11'\/><\/td><\/tr><\/tbody><\/table><\/div><\/div><div id=\"field_6_13\" class=\"gfield gfield--type-survey gfield--input-type-likert gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gsurvey-survey-field \"  data-field-class=\"gsurvey-survey-field\" ><label class='gfield_label gform-field-label' ><span class='gform-field-label__text'>Is your workload post-Reset reasonable and appropriate?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_likert'><table aria-label='Is your workload post-Reset reasonable and appropriate?' class='gsurvey-likert' id='input_6_13'><thead><tr><th id='likert_col_1_6_13' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Very Unreasonable<\/th><th id='likert_col_2_6_13' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Somewhat Unreasonable<\/th><th id='likert_col_3_6_13' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Neutral<\/th><th id='likert_col_4_6_13' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Somewhat Reasonable<\/th><th id='likert_col_5_6_13' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Very Reasonable<\/th><\/tr><\/thead><tbody><tr><td data-label='Very Unreasonable' class='gsurvey-likert-choice'><input name='input_13' type='radio' value='glikertcol1155f01cdf'  id='choice_6_13_1'    aria-labelledby='likert_col_1_6_13'\/><\/td><td data-label='Somewhat Unreasonable' class='gsurvey-likert-choice'><input name='input_13' type='radio' value='glikertcol11dfa44d10'  id='choice_6_13_2'    aria-labelledby='likert_col_2_6_13'\/><\/td><td data-label='Neutral' class='gsurvey-likert-choice'><input name='input_13' type='radio' value='glikertcol11358b8ecf'  id='choice_6_13_3'    aria-labelledby='likert_col_3_6_13'\/><\/td><td data-label='Somewhat Reasonable' class='gsurvey-likert-choice'><input name='input_13' type='radio' value='glikertcol11c522b458'  id='choice_6_13_4'    aria-labelledby='likert_col_4_6_13'\/><\/td><td data-label='Very Reasonable' class='gsurvey-likert-choice'><input name='input_13' type='radio' value='glikertcol11fcc374ae'  id='choice_6_13_5'    aria-labelledby='likert_col_5_6_13'\/><\/td><\/tr><\/tbody><\/table><\/div><\/div><div id=\"field_6_16\" class=\"gfield gfield--type-survey gfield--input-type-likert gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gsurvey-survey-field \"  data-field-class=\"gsurvey-survey-field\" ><label class='gfield_label gform-field-label' ><span class='gform-field-label__text'>How hard-hit was your area by the voluntary redundancies and other staff exits in 2025?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_likert'><table aria-label='How hard-hit was your area by the voluntary redundancies and other staff exits in 2025?' class='gsurvey-likert' id='input_6_16'><thead><tr><th id='likert_col_1_6_16' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Very Affected<\/th><th id='likert_col_2_6_16' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Somewhat Affected<\/th><th id='likert_col_3_6_16' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Neutral<\/th><th id='likert_col_4_6_16' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Somewhat Unaffected<\/th><th id='likert_col_5_6_16' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Largely Unaffacted<\/th><\/tr><\/thead><tbody><tr><td data-label='Very Affected' class='gsurvey-likert-choice'><input name='input_16' type='radio' value='glikertcol1155f01cdf'  id='choice_6_16_1'    aria-labelledby='likert_col_1_6_16'\/><\/td><td data-label='Somewhat Affected' class='gsurvey-likert-choice'><input name='input_16' type='radio' value='glikertcol11dfa44d10'  id='choice_6_16_2'    aria-labelledby='likert_col_2_6_16'\/><\/td><td data-label='Neutral' class='gsurvey-likert-choice'><input name='input_16' type='radio' value='glikertcol11358b8ecf'  id='choice_6_16_3'    aria-labelledby='likert_col_3_6_16'\/><\/td><td data-label='Somewhat Unaffected' class='gsurvey-likert-choice'><input name='input_16' type='radio' value='glikertcol11c522b458'  id='choice_6_16_4'    aria-labelledby='likert_col_4_6_16'\/><\/td><td data-label='Largely Unaffacted' class='gsurvey-likert-choice'><input name='input_16' type='radio' value='glikertcol11fcc374ae'  id='choice_6_16_5'    aria-labelledby='likert_col_5_6_16'\/><\/td><\/tr><\/tbody><\/table><\/div><\/div><fieldset id=\"field_6_18\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-radio gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' ><span class='gform-field-label__text'>To you knowledge, have staff been hired in your area to replace the jobs lost in 2025?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_6_18'>\n\t\t\t<div class='gchoice gchoice_6_18_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_18' type='radio' value='Yes'  id='choice_6_18_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_18_0' id='label_6_18_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_18_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_18' type='radio' value='No'  id='choice_6_18_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_18_1' id='label_6_18_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_18_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_18' type='radio' value='Unsure'  id='choice_6_18_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_18_2' id='label_6_18_2' class='gform-field-label gform-field-label--type-inline'>Unsure<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_6_19\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-radio gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' ><span class='gform-field-label__text'>Have these new appointments been of an appropriate kind and broadly speaking in the right places?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_6_19'>\n\t\t\t<div class='gchoice gchoice_6_19_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_19' type='radio' value='Yes'  id='choice_6_19_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_19_0' id='label_6_19_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_19_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_19' type='radio' value='No'  id='choice_6_19_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_19_1' id='label_6_19_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_19_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_19' type='radio' value='Unsure'  id='choice_6_19_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_19_2' id='label_6_19_2' class='gform-field-label gform-field-label--type-inline'>Unsure<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_6_20\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-radio gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' ><span class='gform-field-label__text'>If you and your colleagues have new position descriptions, are they appropriate to the tasks and responsibilities you actually execute in your work?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_6_20'>\n\t\t\t<div class='gchoice gchoice_6_20_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_20' type='radio' value='Yes'  id='choice_6_20_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_20_0' id='label_6_20_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_20_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_20' type='radio' value='No'  id='choice_6_20_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_20_1' id='label_6_20_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_20_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_20' type='radio' value='Unsure'  id='choice_6_20_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_20_2' id='label_6_20_2' class='gform-field-label gform-field-label--type-inline'>Unsure<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_20_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_20' type='radio' value='Not applicable'  id='choice_6_20_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_20_3' id='label_6_20_3' class='gform-field-label gform-field-label--type-inline'>Not applicable<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_6_21\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-radio gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' ><span class='gform-field-label__text'>Have you been required to take on new responsibilities or extra work not covered in your existing position description or workload agreement subsequent to Reset?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_6_21'>\n\t\t\t<div class='gchoice gchoice_6_21_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_21' type='radio' value='Yes'  id='choice_6_21_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_21_0' id='label_6_21_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_21_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_21' type='radio' value='No'  id='choice_6_21_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_21_1' id='label_6_21_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_21_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_21' type='radio' value='Unsure'  id='choice_6_21_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_21_2' id='label_6_21_2' class='gform-field-label gform-field-label--type-inline'>Unsure<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_21_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_21' type='radio' value='Not applicable'  id='choice_6_21_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_21_3' id='label_6_21_3' class='gform-field-label gform-field-label--type-inline'>Not applicable<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_6_35\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' ><span class='gform-field-label__text'>Do you feel like the role is appropriate for your level?<\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_6_35'>\n\t\t\t<div class='gchoice gchoice_6_35_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_35' type='radio' value='Yes'  id='choice_6_35_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_35_0' id='label_6_35_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_35_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_35' type='radio' value='No'  id='choice_6_35_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_35_1' id='label_6_35_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_35_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_35' type='radio' value='Unsure'  id='choice_6_35_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_35_2' id='label_6_35_2' class='gform-field-label gform-field-label--type-inline'>Unsure<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_35_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_35' type='radio' value='Not applicable'  id='choice_6_35_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_35_3' id='label_6_35_3' class='gform-field-label gform-field-label--type-inline'>Not applicable<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_6_22\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-radio gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' ><span class='gform-field-label__text'>Are you in a new role following Reset?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_6_22'>\n\t\t\t<div class='gchoice gchoice_6_22_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_22' type='radio' value='Yes'  id='choice_6_22_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_22_0' id='label_6_22_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_22_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_22' type='radio' value='No'  id='choice_6_22_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_22_1' id='label_6_22_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_22_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_22' type='radio' value='Unsure'  id='choice_6_22_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_22_2' id='label_6_22_2' class='gform-field-label gform-field-label--type-inline'>Unsure<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_22_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_22' type='radio' value='Not applicable'  id='choice_6_22_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_22_3' id='label_6_22_3' class='gform-field-label gform-field-label--type-inline'>Not applicable<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_6_17\" class=\"gfield gfield--type-survey gfield--input-type-likert gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gsurvey-survey-field \"  data-field-class=\"gsurvey-survey-field\" ><label class='gfield_label gform-field-label' ><span class='gform-field-label__text'>If you are in a new or different role since Reset, is your new role more or less fulfilling than your pre-Reset role?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_likert'><table aria-label='If you are in a new or different role since Reset, is your new role more or less fulfilling than your pre-Reset role?' class='gsurvey-likert' id='input_6_17'><thead><tr><th id='likert_col_1_6_17' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Far less fulfilling<\/th><th id='likert_col_2_6_17' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Somewhat less fulfilling<\/th><th id='likert_col_3_6_17' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Neutral<\/th><th id='likert_col_4_6_17' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Somewhat more fulfilling<\/th><th id='likert_col_5_6_17' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Far more fulfilling<\/th><\/tr><\/thead><tbody><tr><td data-label='Far less fulfilling' class='gsurvey-likert-choice'><input name='input_17' type='radio' value='glikertcol1155f01cdf'  id='choice_6_17_1'    aria-labelledby='likert_col_1_6_17'\/><\/td><td data-label='Somewhat less fulfilling' class='gsurvey-likert-choice'><input name='input_17' type='radio' value='glikertcol11dfa44d10'  id='choice_6_17_2'    aria-labelledby='likert_col_2_6_17'\/><\/td><td data-label='Neutral' class='gsurvey-likert-choice'><input name='input_17' type='radio' value='glikertcol11358b8ecf'  id='choice_6_17_3'    aria-labelledby='likert_col_3_6_17'\/><\/td><td data-label='Somewhat more fulfilling' class='gsurvey-likert-choice'><input name='input_17' type='radio' value='glikertcol11c522b458'  id='choice_6_17_4'    aria-labelledby='likert_col_4_6_17'\/><\/td><td data-label='Far more fulfilling' class='gsurvey-likert-choice'><input name='input_17' type='radio' value='glikertcol11fcc374ae'  id='choice_6_17_5'    aria-labelledby='likert_col_5_6_17'\/><\/td><\/tr><\/tbody><\/table><\/div><\/div><div id=\"field_6_23\" class=\"gfield gfield--type-survey gfield--input-type-likert gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gsurvey-survey-field \"  data-field-class=\"gsurvey-survey-field\" ><label class='gfield_label gform-field-label' ><span class='gform-field-label__text'>In light of the disruption cause by Reset in 2025, how are your colleagues in your work unit or teaching area coping right now?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_likert'><table aria-label='In light of the disruption cause by Reset in 2025, how are your colleagues in your work unit or teaching area coping right now?' class='gsurvey-likert' id='input_6_23'><thead><tr><th id='likert_col_1_6_23' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Very poorly<\/th><th id='likert_col_2_6_23' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Somewhat poorly<\/th><th id='likert_col_3_6_23' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Neutral<\/th><th id='likert_col_4_6_23' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Somewhat well<\/th><th id='likert_col_5_6_23' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Very well<\/th><\/tr><\/thead><tbody><tr><td data-label='Very poorly' class='gsurvey-likert-choice'><input name='input_23' type='radio' value='glikertcol1155f01cdf'  id='choice_6_23_1'    aria-labelledby='likert_col_1_6_23'\/><\/td><td data-label='Somewhat poorly' class='gsurvey-likert-choice'><input name='input_23' type='radio' value='glikertcol11dfa44d10'  id='choice_6_23_2'    aria-labelledby='likert_col_2_6_23'\/><\/td><td data-label='Neutral' class='gsurvey-likert-choice'><input name='input_23' type='radio' value='glikertcol11358b8ecf'  id='choice_6_23_3'    aria-labelledby='likert_col_3_6_23'\/><\/td><td data-label='Somewhat well' class='gsurvey-likert-choice'><input name='input_23' type='radio' value='glikertcol11c522b458'  id='choice_6_23_4'    aria-labelledby='likert_col_4_6_23'\/><\/td><td data-label='Very well' class='gsurvey-likert-choice'><input name='input_23' type='radio' value='glikertcol11fcc374ae'  id='choice_6_23_5'    aria-labelledby='likert_col_5_6_23'\/><\/td><\/tr><\/tbody><\/table><\/div><\/div><div id=\"field_6_24\" class=\"gfield gfield--type-survey gfield--input-type-likert gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gsurvey-survey-field \"  data-field-class=\"gsurvey-survey-field\" ><label class='gfield_label gform-field-label' ><span class='gform-field-label__text'>From your experience, how are staff in other work areas whom you encounter in your working week coping right now?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_likert'><table aria-label='From your experience, how are staff in other work areas whom you encounter in your working week coping right now?' class='gsurvey-likert' id='input_6_24'><thead><tr><th id='likert_col_1_6_24' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Very poorly<\/th><th id='likert_col_2_6_24' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Somewhat poorly<\/th><th id='likert_col_3_6_24' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Neutral<\/th><th id='likert_col_4_6_24' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Somewhat well<\/th><th id='likert_col_5_6_24' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Very well<\/th><\/tr><\/thead><tbody><tr><td data-label='Very poorly' class='gsurvey-likert-choice'><input name='input_24' type='radio' value='glikertcol1155f01cdf'  id='choice_6_24_1'    aria-labelledby='likert_col_1_6_24'\/><\/td><td data-label='Somewhat poorly' class='gsurvey-likert-choice'><input name='input_24' type='radio' value='glikertcol11dfa44d10'  id='choice_6_24_2'    aria-labelledby='likert_col_2_6_24'\/><\/td><td data-label='Neutral' class='gsurvey-likert-choice'><input name='input_24' type='radio' value='glikertcol11358b8ecf'  id='choice_6_24_3'    aria-labelledby='likert_col_3_6_24'\/><\/td><td data-label='Somewhat well' class='gsurvey-likert-choice'><input name='input_24' type='radio' value='glikertcol11c522b458'  id='choice_6_24_4'    aria-labelledby='likert_col_4_6_24'\/><\/td><td data-label='Very well' class='gsurvey-likert-choice'><input name='input_24' type='radio' value='glikertcol11fcc374ae'  id='choice_6_24_5'    aria-labelledby='likert_col_5_6_24'\/><\/td><\/tr><\/tbody><\/table><\/div><\/div><fieldset id=\"field_6_25\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-radio gfield--width-full gfield_contains_required field_sublabel_above gfield--has-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' ><span class='gform-field-label__text'>Since 2022 greater emphasis has been placed on psychosocial hazards in the workplace, especially at traumatic or disjointed times. Do you see psychosocial hazards in your work area post-Reset?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_6_25'>\n\t\t\t<div class='gchoice gchoice_6_25_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_25' type='radio' value='Yes'  id='choice_6_25_0' onchange='gformToggleRadioOther( this )' aria-describedby=\"gfield_description_6_25\"   \/>\n\t\t\t\t\t<label for='choice_6_25_0' id='label_6_25_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_25_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_25' type='radio' value='No'  id='choice_6_25_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_25_1' id='label_6_25_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_25_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_25' type='radio' value='Unsure'  id='choice_6_25_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_25_2' id='label_6_25_2' class='gform-field-label gform-field-label--type-inline'>Unsure<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_25_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_25' type='radio' value='Not applicable'  id='choice_6_25_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_25_3' id='label_6_25_3' class='gform-field-label gform-field-label--type-inline'>Not applicable<\/label>\n\t\t\t<\/div><\/div><\/div><div class='gfield_description' id='gfield_description_6_25'>Safework NSW defines a psychosocial hazards at work as situations or aspects of work that may cause a stress response. They can lead to psychological or physical harm. \n\nPsychosocial hazards can arise from or relate to the design or management of work (for example, how work is done), the work environment (for example, where work is done), plant and machinery at a workplace (for example, how noisy it can be), and\/or workplace interactions or behaviours (for example, how customers speak to workers).<\/div><\/fieldset><div id=\"field_6_34\" class=\"gfield gfield--type-textarea gfield--input-type-textarea gfield--width-full field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_6_34'><span class='gform-field-label__text'>Briefly describe the issues you have observed. Please avoid using personally identifying information.<\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_34' id='input_6_34' class='textarea large'      aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/div><fieldset id=\"field_6_27\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-radio gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' ><span class='gform-field-label__text'>In your view, has Reset improved the effective delivery of teaching and services at the University?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_6_27'>\n\t\t\t<div class='gchoice gchoice_6_27_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_27' type='radio' value='Yes'  id='choice_6_27_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_27_0' id='label_6_27_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_27_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_27' type='radio' value='No'  id='choice_6_27_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_27_1' id='label_6_27_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_27_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_27' type='radio' value='Unsure'  id='choice_6_27_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_27_2' id='label_6_27_2' class='gform-field-label gform-field-label--type-inline'>Unsure<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_27_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_27' type='radio' value='Not applicable'  id='choice_6_27_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_27_3' id='label_6_27_3' class='gform-field-label gform-field-label--type-inline'>Not applicable<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_6_12\" class=\"gfield gfield--type-survey gfield--input-type-textarea field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gsurvey-survey-field \"  data-field-class=\"gsurvey-survey-field\" ><label class='gfield_label gform-field-label' for='input_6_12'><span class='gform-field-label__text'>In your observation, how have students at Western been affected by the changes carried out under the banner of Reset in 2025 and early 2026?<\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_12' id='input_6_12' class='textarea medium'      aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/div><fieldset id=\"field_6_28\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-radio gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' ><span class='gform-field-label__text'>The Vice Chancellor argued that the Reset restructure in 2025 was made necessary by the financial situation at the University in 2025. In your view, is this a plausible and convincing argument?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_6_28'>\n\t\t\t<div class='gchoice gchoice_6_28_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_28' type='radio' value='Yes'  id='choice_6_28_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_28_0' id='label_6_28_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_28_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_28' type='radio' value='No'  id='choice_6_28_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_28_1' id='label_6_28_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_28_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_28' type='radio' value='Unsure'  id='choice_6_28_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_28_2' id='label_6_28_2' class='gform-field-label gform-field-label--type-inline'>Unsure<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_28_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_28' type='radio' value='Not applicable'  id='choice_6_28_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_28_3' id='label_6_28_3' class='gform-field-label gform-field-label--type-inline'>Not applicable<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_6_29\" class=\"gfield gfield--type-survey gfield--input-type-likert gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gsurvey-survey-field \"  data-field-class=\"gsurvey-survey-field\" ><label class='gfield_label gform-field-label' ><span class='gform-field-label__text'>In your view, is the University in a better or worse state since Reset?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_likert'><table aria-label='In your view, is the University in a better or worse state since Reset?' class='gsurvey-likert' id='input_6_29'><thead><tr><th id='likert_col_1_6_29' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Much worse<\/th><th id='likert_col_2_6_29' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Somewhat worse<\/th><th id='likert_col_3_6_29' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Neutral<\/th><th id='likert_col_4_6_29' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Somewhat better<\/th><th id='likert_col_5_6_29' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Much better<\/th><\/tr><\/thead><tbody><tr><td data-label='Much worse' class='gsurvey-likert-choice'><input name='input_29' type='radio' value='glikertcol1155f01cdf'  id='choice_6_29_1'    aria-labelledby='likert_col_1_6_29'\/><\/td><td data-label='Somewhat worse' class='gsurvey-likert-choice'><input name='input_29' type='radio' value='glikertcol11dfa44d10'  id='choice_6_29_2'    aria-labelledby='likert_col_2_6_29'\/><\/td><td data-label='Neutral' class='gsurvey-likert-choice'><input name='input_29' type='radio' value='glikertcol11358b8ecf'  id='choice_6_29_3'    aria-labelledby='likert_col_3_6_29'\/><\/td><td data-label='Somewhat better' class='gsurvey-likert-choice'><input name='input_29' type='radio' value='glikertcol11c522b458'  id='choice_6_29_4'    aria-labelledby='likert_col_4_6_29'\/><\/td><td data-label='Much better' class='gsurvey-likert-choice'><input name='input_29' type='radio' value='glikertcol11fcc374ae'  id='choice_6_29_5'    aria-labelledby='likert_col_5_6_29'\/><\/td><\/tr><\/tbody><\/table><\/div><\/div><div id=\"field_6_30\" class=\"gfield gfield--type-survey gfield--input-type-likert gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gsurvey-survey-field \"  data-field-class=\"gsurvey-survey-field\" ><label class='gfield_label gform-field-label' ><span class='gform-field-label__text'>How much confidence do you have that issues you raise about the state of your work unit or the University will be taken seriously and addressed right now?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_likert'><table aria-label='How much confidence do you have that issues you raise about the state of your work unit or the University will be taken seriously and addressed right now?' class='gsurvey-likert' id='input_6_30'><thead><tr><th id='likert_col_1_6_30' scope='col' role='presentation' class='gsurvey-likert-choice-label'>No confidence<\/th><th id='likert_col_2_6_30' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Little confidence<\/th><th id='likert_col_3_6_30' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Neutral<\/th><th id='likert_col_4_6_30' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Some confidence<\/th><th id='likert_col_5_6_30' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Strong confidence<\/th><\/tr><\/thead><tbody><tr><td data-label='No confidence' class='gsurvey-likert-choice'><input name='input_30' type='radio' value='glikertcol1155f01cdf'  id='choice_6_30_1'    aria-labelledby='likert_col_1_6_30'\/><\/td><td data-label='Little confidence' class='gsurvey-likert-choice'><input name='input_30' type='radio' value='glikertcol11dfa44d10'  id='choice_6_30_2'    aria-labelledby='likert_col_2_6_30'\/><\/td><td data-label='Neutral' class='gsurvey-likert-choice'><input name='input_30' type='radio' value='glikertcol11358b8ecf'  id='choice_6_30_3'    aria-labelledby='likert_col_3_6_30'\/><\/td><td data-label='Some confidence' class='gsurvey-likert-choice'><input name='input_30' type='radio' value='glikertcol11c522b458'  id='choice_6_30_4'    aria-labelledby='likert_col_4_6_30'\/><\/td><td data-label='Strong confidence' class='gsurvey-likert-choice'><input name='input_30' type='radio' value='glikertcol11fcc374ae'  id='choice_6_30_5'    aria-labelledby='likert_col_5_6_30'\/><\/td><\/tr><\/tbody><\/table><\/div><\/div><div id=\"field_6_31\" class=\"gfield gfield--type-survey gfield--input-type-likert gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gsurvey-survey-field \"  data-field-class=\"gsurvey-survey-field\" ><label class='gfield_label gform-field-label' ><span class='gform-field-label__text'>How much confidence do you have in the accuracy of the information provided by the Vice Chancellor and the senior leadership of the University right now?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_likert'><table aria-label='How much confidence do you have in the accuracy of the information provided by the Vice Chancellor and the senior leadership of the University right now?' class='gsurvey-likert' id='input_6_31'><thead><tr><th id='likert_col_1_6_31' scope='col' role='presentation' class='gsurvey-likert-choice-label'>No confidence<\/th><th id='likert_col_2_6_31' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Little confidence<\/th><th id='likert_col_3_6_31' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Neutral<\/th><th id='likert_col_4_6_31' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Some confidence<\/th><th id='likert_col_5_6_31' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Strong confidence<\/th><\/tr><\/thead><tbody><tr><td data-label='No confidence' class='gsurvey-likert-choice'><input name='input_31' type='radio' value='glikertcol1155f01cdf'  id='choice_6_31_1'    aria-labelledby='likert_col_1_6_31'\/><\/td><td data-label='Little confidence' class='gsurvey-likert-choice'><input name='input_31' type='radio' value='glikertcol11dfa44d10'  id='choice_6_31_2'    aria-labelledby='likert_col_2_6_31'\/><\/td><td data-label='Neutral' class='gsurvey-likert-choice'><input name='input_31' type='radio' value='glikertcol11358b8ecf'  id='choice_6_31_3'    aria-labelledby='likert_col_3_6_31'\/><\/td><td data-label='Some confidence' class='gsurvey-likert-choice'><input name='input_31' type='radio' value='glikertcol11c522b458'  id='choice_6_31_4'    aria-labelledby='likert_col_4_6_31'\/><\/td><td data-label='Strong confidence' class='gsurvey-likert-choice'><input name='input_31' type='radio' value='glikertcol11fcc374ae'  id='choice_6_31_5'    aria-labelledby='likert_col_5_6_31'\/><\/td><\/tr><\/tbody><\/table><\/div><\/div><div id=\"field_6_32\" class=\"gfield gfield--type-survey gfield--input-type-likert gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gsurvey-survey-field \"  data-field-class=\"gsurvey-survey-field\" ><label class='gfield_label gform-field-label' ><span class='gform-field-label__text'>How much confidence do you have that the Vice Chancellor and senior staff have a carefully-laid-out plan to improve the performance and functioning of the institution?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_likert'><table aria-label='How much confidence do you have that the Vice Chancellor and senior staff have a carefully-laid-out plan to improve the performance and functioning of the institution?' class='gsurvey-likert' id='input_6_32'><thead><tr><th id='likert_col_1_6_32' scope='col' role='presentation' class='gsurvey-likert-choice-label'>No confidence<\/th><th id='likert_col_2_6_32' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Little confidence<\/th><th id='likert_col_3_6_32' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Neutral<\/th><th id='likert_col_4_6_32' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Some confidence<\/th><th id='likert_col_5_6_32' scope='col' role='presentation' class='gsurvey-likert-choice-label'>Strong confidence<\/th><\/tr><\/thead><tbody><tr><td data-label='No confidence' class='gsurvey-likert-choice'><input name='input_32' type='radio' value='glikertcol1155f01cdf'  id='choice_6_32_1'    aria-labelledby='likert_col_1_6_32'\/><\/td><td data-label='Little confidence' class='gsurvey-likert-choice'><input name='input_32' type='radio' value='glikertcol11dfa44d10'  id='choice_6_32_2'    aria-labelledby='likert_col_2_6_32'\/><\/td><td data-label='Neutral' class='gsurvey-likert-choice'><input name='input_32' type='radio' value='glikertcol11358b8ecf'  id='choice_6_32_3'    aria-labelledby='likert_col_3_6_32'\/><\/td><td data-label='Some confidence' class='gsurvey-likert-choice'><input name='input_32' type='radio' value='glikertcol11c522b458'  id='choice_6_32_4'    aria-labelledby='likert_col_4_6_32'\/><\/td><td data-label='Strong confidence' class='gsurvey-likert-choice'><input name='input_32' type='radio' value='glikertcol11fcc374ae'  id='choice_6_32_5'    aria-labelledby='likert_col_5_6_32'\/><\/td><\/tr><\/tbody><\/table><\/div><\/div><fieldset id=\"field_6_33\" class=\"gfield gfield--type-multi_choice gfield--type-choice gfield--input-type-radio gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' ><span class='gform-field-label__text'>In view of the stress caused to staff over the last 12 months, and the uncertain effects of Reset, in your view should the VC apologise to the University community for the trauma he\u2019s caused at the University since his arrival?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_6_33'>\n\t\t\t<div class='gchoice gchoice_6_33_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_33' type='radio' value='Yes'  id='choice_6_33_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_33_0' id='label_6_33_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_33_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_33' type='radio' value='No'  id='choice_6_33_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_33_1' id='label_6_33_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_33_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_33' type='radio' value='Unsure'  id='choice_6_33_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_33_2' id='label_6_33_2' class='gform-field-label gform-field-label--type-inline'>Unsure<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_6_33_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_33' type='radio' value='Not applicable'  id='choice_6_33_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_6_33_3' id='label_6_33_3' class='gform-field-label gform-field-label--type-inline'>Not applicable<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_6_26\" class=\"gfield gfield--type-survey gfield--input-type-textarea gfield--width-full field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible gsurvey-survey-field \"  data-field-class=\"gsurvey-survey-field\" ><label class='gfield_label gform-field-label' for='input_6_26'><span class='gform-field-label__text'>Do you have any other comments on the state of the institution following Reset<\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_26' id='input_6_26' class='textarea medium'      aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/div><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <button type='submit' id='gform_submit_button_6' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' >Submit<\/button> <input type='hidden' name='gform_ajax' value='form_id=6&amp;title=&amp;description=1&amp;tabindex=0&amp;theme=orbital&amp;styles=[]&amp;hash=9bc6dae2b73a6afec87629102cb31253' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_6' value='iframe' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_6' id='gform_theme_6' value='orbital' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_6' id='gform_style_settings_6' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_6' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='6' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='AUD' value='RbjSfw6lc2BPCGTN\/wRUv7SFeG\/BN6d9aOgd4gSBLxYfHlsARq5LkxwoquSN785s7BZNSlCttRdwu8OBg0\/IHZftWHr13HkZKtGTvgYk\/oze3K8=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_6' value='WyJ7XCIxOFwiOltcIjQzMmNmNDgyYTE1ZmFhMDM1YTkzZDUzZTQ2YzRlMTY0XCIsXCI2MTA4M2RhYTE4YmI0ZGNiYmE5NDExMTkyNTU2NDk4OFwiLFwiMTAyZDVjODAwYjNmZTA1MjNmYzM2MGRmMTBlNjYwNzdcIl0sXCIxOVwiOltcIjQzMmNmNDgyYTE1ZmFhMDM1YTkzZDUzZTQ2YzRlMTY0XCIsXCI2MTA4M2RhYTE4YmI0ZGNiYmE5NDExMTkyNTU2NDk4OFwiLFwiMTAyZDVjODAwYjNmZTA1MjNmYzM2MGRmMTBlNjYwNzdcIl0sXCIyMFwiOltcIjQzMmNmNDgyYTE1ZmFhMDM1YTkzZDUzZTQ2YzRlMTY0XCIsXCI2MTA4M2RhYTE4YmI0ZGNiYmE5NDExMTkyNTU2NDk4OFwiLFwiMTAyZDVjODAwYjNmZTA1MjNmYzM2MGRmMTBlNjYwNzdcIixcIjllMjMzY2JjMGY4N2RjMTZmNzYxYzZhODE1M2JjNzg2XCJdLFwiMjFcIjpbXCI0MzJjZjQ4MmExNWZhYTAzNWE5M2Q1M2U0NmM0ZTE2NFwiLFwiNjEwODNkYWExOGJiNGRjYmJhOTQxMTE5MjU1NjQ5ODhcIixcIjEwMmQ1YzgwMGIzZmUwNTIzZmMzNjBkZjEwZTY2MDc3XCIsXCI5ZTIzM2NiYzBmODdkYzE2Zjc2MWM2YTgxNTNiYzc4NlwiXSxcIjM1XCI6W1wiNDMyY2Y0ODJhMTVmYWEwMzVhOTNkNTNlNDZjNGUxNjRcIixcIjYxMDgzZGFhMThiYjRkY2JiYTk0MTExOTI1NTY0OTg4XCIsXCIxMDJkNWM4MDBiM2ZlMDUyM2ZjMzYwZGYxMGU2NjA3N1wiLFwiOWUyMzNjYmMwZjg3ZGMxNmY3NjFjNmE4MTUzYmM3ODZcIl0sXCIyMlwiOltcIjQzMmNmNDgyYTE1ZmFhMDM1YTkzZDUzZTQ2YzRlMTY0XCIsXCI2MTA4M2RhYTE4YmI0ZGNiYmE5NDExMTkyNTU2NDk4OFwiLFwiMTAyZDVjODAwYjNmZTA1MjNmYzM2MGRmMTBlNjYwNzdcIixcIjllMjMzY2JjMGY4N2RjMTZmNzYxYzZhODE1M2JjNzg2XCJdLFwiMjVcIjpbXCI0MzJjZjQ4MmExNWZhYTAzNWE5M2Q1M2U0NmM0ZTE2NFwiLFwiNjEwODNkYWExOGJiNGRjYmJhOTQxMTE5MjU1NjQ5ODhcIixcIjEwMmQ1YzgwMGIzZmUwNTIzZmMzNjBkZjEwZTY2MDc3XCIsXCI5ZTIzM2NiYzBmODdkYzE2Zjc2MWM2YTgxNTNiYzc4NlwiXSxcIjI3XCI6W1wiNDMyY2Y0ODJhMTVmYWEwMzVhOTNkNTNlNDZjNGUxNjRcIixcIjYxMDgzZGFhMThiYjRkY2JiYTk0MTExOTI1NTY0OTg4XCIsXCIxMDJkNWM4MDBiM2ZlMDUyM2ZjMzYwZGYxMGU2NjA3N1wiLFwiOWUyMzNjYmMwZjg3ZGMxNmY3NjFjNmE4MTUzYmM3ODZcIl0sXCIyOFwiOltcIjQzMmNmNDgyYTE1ZmFhMDM1YTkzZDUzZTQ2YzRlMTY0XCIsXCI2MTA4M2RhYTE4YmI0ZGNiYmE5NDExMTkyNTU2NDk4OFwiLFwiMTAyZDVjODAwYjNmZTA1MjNmYzM2MGRmMTBlNjYwNzdcIixcIjllMjMzY2JjMGY4N2RjMTZmNzYxYzZhODE1M2JjNzg2XCJdLFwiMzNcIjpbXCI0MzJjZjQ4MmExNWZhYTAzNWE5M2Q1M2U0NmM0ZTE2NFwiLFwiNjEwODNkYWExOGJiNGRjYmJhOTQxMTE5MjU1NjQ5ODhcIixcIjEwMmQ1YzgwMGIzZmUwNTIzZmMzNjBkZjEwZTY2MDc3XCIsXCI5ZTIzM2NiYzBmODdkYzE2Zjc2MWM2YTgxNTNiYzc4NlwiXSxcImdmb3JtX3N1Ym1pc3Npb25fbWV0aG9kXCI6W1wiZWY0YmQ5ZDAzMDc1NjgyN2U1OWU2MWVmY2ZjYmQ4ZjFcIixcIjZmZGZlYmFmMTlhOTE5ZWI4MTQzZDdjZWI1YjcwODM1XCIsXCI1YTU3NWZiZDQwOWM0Y2MxNWQxMzM1NTk5NjMxNWUzN1wiXSxcImdmb3JtX3RoZW1lXCI6XCJkNjcwOGVhMzQxZDA3YzYyNzkwYzA4NmFkNDFkYzQyYlwiLFwiZ2Zvcm1fc3R5bGVfc2V0dGluZ3NcIjpcImI3ZWFiZDdlNmMzYzdmYWVhYzRhOGJlMTFkNzlkMzMyXCIsXCJmb3JtX2lkXCI6XCIxNDE1NTc0NWE3MjhiNWEwZTBiZTU1ZDEyYmJjZmZiN1wiLFwidXJsXCI6XCIyZGQ5NjAzODE2MDA2OTUxMzEyN2YyMTEwMTA5ZmU2Y1wiLFwic3RhdGVfdGltZXN0YW1wXCI6XCI5YzRkYzk1MmVmM2I1NGQ5MGRjNzkzYzgzYmFlMDFjM1wifSIsImE2ZDgyYzdiODVhZjU4ZWVmM2YzNDUzMDBiZmMxMDFjIiwxNzg5OTExMDEwXQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_6' id='gform_target_page_number_6' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_6' id='gform_source_page_number_6' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <p style=\"display: none !important;\" class=\"akismet-fields-container\" data-prefix=\"ak_\"><label>&#916;<textarea name=\"ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"><\/textarea><\/label><input type=\"hidden\" id=\"ak_js_1\" name=\"ak_js\" value=\"208\"\/><script>\ndocument.getElementById( \"ak_js_1\" ).setAttribute( \"value\", ( new Date() ).getTime() );\n<\/script>\n<\/p><\/form>\n                        <\/div>\n\t\t                <iframe style='display:none;width:0px;height:0px;' src='about:blank' name='gform_ajax_frame_6' id='gform_ajax_frame_6' title='This iframe contains the logic required to handle Ajax powered Gravity Forms.'><\/iframe>\n\t\t                <script>\ngform.initializeOnLoaded( function() {jQuery('#gform_ajax_frame_6').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_6');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_6').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){form_content.find('form').css('opacity', 0);jQuery('#gform_wrapper_6').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_6').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_6').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/ jQuery(document).scrollTop(jQuery('#gform_wrapper_6').offset().top - mt); }, 50 );var current_page = jQuery('#gform_source_page_number_6').val();jQuery(document).trigger('gform_page_loaded', [6, current_page]);window['gf_submitting_6'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_6').replaceWith(confirmation_content);jQuery(document).scrollTop(jQuery('#gf_6').offset().top - mt);jQuery(document).trigger('gform_confirmation_loaded', [6]);window['gf_submitting_6'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_6').text());}else{jQuery('#gform_6').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"6\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_6\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_6\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_6\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 6, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\r\n\n\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_2 et_pb_section et_section_regular et_block_section\">\n<div class=\"et_pb_row_2 et_pb_row et_block_row et_clickable\">\n<div class=\"et_pb_column_2 et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\">\n<div class=\"et_pb_text_2 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><h3>Not yet a member? <span style=\"color: #0000ff\">Join the union<\/span> for all staff at WSU today.<\/h3>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":3,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"inline_featured_image":false,"_et_pb_use_builder":"on","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":"","_members_access_role":[],"_members_access_error":""},"tags":[],"dipi_cpt_category":[],"work_area":[],"class_list":["post-27399782","page","type-page","status-publish","hentry"],"acf":[],"dsm_author":{"name":"jwilliams","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/07575b13bce6159d20fcb72126d3accd23edfd1184a96de51b4d5af25fc4e210?s=96&d=mm&r=g","archive_link":"https:\/\/nsw.nteu.au\/council\/news\/author\/jwilliams\/","biodata":""},"dsm_categories":[],"dsm_attachment_categories":[],"dsm_featured_image":null,"dsm_comment_count":0,"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Western Sydney University - 2026 All Staff Survey - NSW Division Council<\/title>\n<meta name=\"description\" content=\"The NTEU is running an all staff survey to better understand the experience of workers at Western Sydney University following Reset.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/nsw.nteu.au\/council\/western-sydney-university-2026-all-staff-survey\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Western Sydney University - 2026 All Staff Survey - NSW Division Council\" \/>\n<meta property=\"og:description\" content=\"The NTEU is running an all staff survey to better understand the experience of workers at Western Sydney University following Reset.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nsw.nteu.au\/council\/western-sydney-university-2026-all-staff-survey\/\" \/>\n<meta property=\"og:site_name\" content=\"NSW Division Council\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-14T04:30:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/nsw.nteu.au\/council\/wp-content\/uploads\/2025\/03\/NSWDiv-newstile.png?ver=1758007273\" \/>\n\t<meta property=\"og:image:width\" content=\"900\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/nsw.nteu.au\\\/council\\\/western-sydney-university-2026-all-staff-survey\\\/\",\"url\":\"https:\\\/\\\/nsw.nteu.au\\\/council\\\/western-sydney-university-2026-all-staff-survey\\\/\",\"name\":\"Western Sydney University - 2026 All Staff Survey - NSW Division Council\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nsw.nteu.au\\\/council\\\/#website\"},\"datePublished\":\"2026-04-21T05:08:46+00:00\",\"dateModified\":\"2026-05-14T04:30:15+00:00\",\"description\":\"The NTEU is running an all staff survey to better understand the experience of workers at Western Sydney University following Reset.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/nsw.nteu.au\\\/council\\\/western-sydney-university-2026-all-staff-survey\\\/#breadcrumb\"},\"inLanguage\":\"en-AU\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/nsw.nteu.au\\\/council\\\/western-sydney-university-2026-all-staff-survey\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/nsw.nteu.au\\\/council\\\/western-sydney-university-2026-all-staff-survey\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/nsw.nteu.au\\\/council\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Western Sydney University &#8211; 2026 All Staff Survey\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/nsw.nteu.au\\\/council\\\/#website\",\"url\":\"https:\\\/\\\/nsw.nteu.au\\\/council\\\/\",\"name\":\"NSW Division Council\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/nsw.nteu.au\\\/council\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-AU\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Western Sydney University - 2026 All Staff Survey - NSW Division Council","description":"The NTEU is running an all staff survey to better understand the experience of workers at Western Sydney University following Reset.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/nsw.nteu.au\/council\/western-sydney-university-2026-all-staff-survey\/","og_locale":"en_US","og_type":"article","og_title":"Western Sydney University - 2026 All Staff Survey - NSW Division Council","og_description":"The NTEU is running an all staff survey to better understand the experience of workers at Western Sydney University following Reset.","og_url":"https:\/\/nsw.nteu.au\/council\/western-sydney-university-2026-all-staff-survey\/","og_site_name":"NSW Division Council","article_modified_time":"2026-05-14T04:30:15+00:00","og_image":[{"width":900,"height":900,"url":"https:\/\/nsw.nteu.au\/council\/wp-content\/uploads\/2025\/03\/NSWDiv-newstile.png?ver=1758007273","type":"image\/png"}],"twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/nsw.nteu.au\/council\/western-sydney-university-2026-all-staff-survey\/","url":"https:\/\/nsw.nteu.au\/council\/western-sydney-university-2026-all-staff-survey\/","name":"Western Sydney University - 2026 All Staff Survey - NSW Division Council","isPartOf":{"@id":"https:\/\/nsw.nteu.au\/council\/#website"},"datePublished":"2026-04-21T05:08:46+00:00","dateModified":"2026-05-14T04:30:15+00:00","description":"The NTEU is running an all staff survey to better understand the experience of workers at Western Sydney University following Reset.","breadcrumb":{"@id":"https:\/\/nsw.nteu.au\/council\/western-sydney-university-2026-all-staff-survey\/#breadcrumb"},"inLanguage":"en-AU","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nsw.nteu.au\/council\/western-sydney-university-2026-all-staff-survey\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/nsw.nteu.au\/council\/western-sydney-university-2026-all-staff-survey\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/nsw.nteu.au\/council\/"},{"@type":"ListItem","position":2,"name":"Western Sydney University &#8211; 2026 All Staff Survey"}]},{"@type":"WebSite","@id":"https:\/\/nsw.nteu.au\/council\/#website","url":"https:\/\/nsw.nteu.au\/council\/","name":"NSW Division Council","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/nsw.nteu.au\/council\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-AU"}]}},"_links":{"self":[{"href":"https:\/\/nsw.nteu.au\/council\/wp-json\/wp\/v2\/pages\/27399782","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nsw.nteu.au\/council\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/nsw.nteu.au\/council\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/nsw.nteu.au\/council\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/nsw.nteu.au\/council\/wp-json\/wp\/v2\/comments?post=27399782"}],"version-history":[{"count":14,"href":"https:\/\/nsw.nteu.au\/council\/wp-json\/wp\/v2\/pages\/27399782\/revisions"}],"predecessor-version":[{"id":27400023,"href":"https:\/\/nsw.nteu.au\/council\/wp-json\/wp\/v2\/pages\/27399782\/revisions\/27400023"}],"wp:attachment":[{"href":"https:\/\/nsw.nteu.au\/council\/wp-json\/wp\/v2\/media?parent=27399782"}],"wp:term":[{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nsw.nteu.au\/council\/wp-json\/wp\/v2\/tags?post=27399782"},{"taxonomy":"dipi_cpt_category","embeddable":true,"href":"https:\/\/nsw.nteu.au\/council\/wp-json\/wp\/v2\/dipi_cpt_category?post=27399782"},{"taxonomy":"work_area","embeddable":true,"href":"https:\/\/nsw.nteu.au\/council\/wp-json\/wp\/v2\/work_area?post=27399782"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}