You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: templates/careers/application/_activate-email.html
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,6 @@
5
5
<p>Thank you for the time you have spent on this application. We would love to collect your thoughts on our process and will shortly be sending you a candidate survey to complete via email. We would very much appreciate your time in helping us understand your feedback.</p>
6
6
<p>We would like to take this opportunity to wish you the very best with your next career steps.</p>
7
7
<p>Regards,</p>
8
-
<p>{{ hiring_lead["name"] }}</p>
8
+
<p>{{ hiring_lead["name"] if hiring_lead else "Talent team" }}</p>
9
9
<p>For further information on data collection, please refer to our <ahref="/legal/data-privacy/recruitment" target="_blank">recruitment privacy notice</a> and <ahref="/legal/data-privacy" target="_blank">privacy policy</a>.</p>
Copy file name to clipboardExpand all lines: templates/careers/application/index.html
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ <h1 class="p-heading--2 u-sv2">
92
92
<br/>
93
93
Application for {{ application["role_name"] }}
94
94
</h1>
95
-
{% if "stage_progress" in application and application["stage_progress"]["assessment"] and application['source']['id'] == 2 and application['job_post_id'] %}
95
+
{% if "stage_progress" in application and application["stage_progress"]["assessment"] and application['source_id'] == 2 and application['job_post_id'] %}
{% for app in application["candidate"]["applications"] %}
111
-
{% if app["status"] != 'rejected' and app["id"] != application["id"] and app["jobs"]|length > 0 and app["jobs"][0]["id"] != second_look_req_id %}
111
+
{% if app["status"] != 'rejected' and app["id"] != application["id"] and app["jobs"]|length > 0 and app["jobs"][0]["id"] != second_look_req_id and app["custom_fields"]["canonical_com_application_page"] %}
@@ -120,7 +120,7 @@ <h2 class="p-text--x-small-capitalised u-no-margin--bottom">The status of your o
120
120
{% endif %}
121
121
<!-- End thank you for applying section. -->
122
122
123
-
{% if "stage_progress" in application and application["stage_progress"]["assessment"] or application["stage_progress"]["early_stage"] or application["stage_progress"]["late_stage"] or application["stage_progress"]["offer"] %}
123
+
{% if application["hiring_lead"] and ("stage_progress" in application and application["stage_progress"]["assessment"] or application["stage_progress"]["early_stage"] or application["stage_progress"]["late_stage"] or application["stage_progress"]["offer"]) %}
124
124
<!-- Hiring lead section. -->
125
125
<sectionclass="p-strip">
126
126
<divclass="row">
@@ -335,7 +335,7 @@ <h1>Your application has been withdrawn</h1>
0 commit comments