diff --git a/app/views/jobseekers/saved_jobs/index.html.slim b/app/views/jobseekers/saved_jobs/index.html.slim index c2ec359d6a..6298e2f76c 100644 --- a/app/views/jobseekers/saved_jobs/index.html.slim +++ b/app/views/jobseekers/saved_jobs/index.html.slim @@ -27,7 +27,8 @@ h1.govuk-heading-l = t(".page_title") - card.with_body do = tag.div(card.labelled_item(t(".added"), format_date(saved_job.created_at, :date_only))) - if saved_job.vacancy.expired? - = tag.div(t(".deadline_passed"), class: "govuk-!-font-weight-bold text-red") + .status-tag + = govuk_tag(text: "Deadline passed", colour: "red", classes: "govuk-!-margin-bottom-2") = tag.div(card.labelled_item(t(".application_deadline"), format_time_to_datetime_at(saved_job.vacancy.expires_at))) - if saved_job.vacancy.enable_job_applications? && Vacancy.live.exists?(saved_job.vacancy.id) && current_jobseeker.job_applications.after_submission.find_by(vacancy_id: saved_job.vacancy.id).present?