From b70401e3dcc99a2f7202f29d942e15a5b2d5301f Mon Sep 17 00:00:00 2001
From: teddy
Date: Tue, 10 Sep 2024 16:35:10 +0100
Subject: [PATCH] Bug fix for missing buttons due to outdated reference to
shared layout file button components which moved to
components/common/buttons/_buttons_save_cancel.html
---
templates/pages/core/_home.html | 1 +
templates/pages/legal/_accessibility_statement.html | 2 +-
templates/pages/user/_user.html | 1 +
3 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/templates/pages/core/_home.html b/templates/pages/core/_home.html
index 7513b4ce..fefb3469 100644
--- a/templates/pages/core/_home.html
+++ b/templates/pages/core/_home.html
@@ -11,6 +11,7 @@
We make websites, web apps, and desktop software
{% set block_id = 'button_get_in_touch' %}
+ {% include 'components/common/buttons/_buttons_save_cancel.html' %}
diff --git a/templates/pages/legal/_accessibility_statement.html b/templates/pages/legal/_accessibility_statement.html
index 97d14949..27753dc3 100644
--- a/templates/pages/legal/_accessibility_statement.html
+++ b/templates/pages/legal/_accessibility_statement.html
@@ -49,7 +49,7 @@
If you need information on this website in a different format like accessible PDF, large print, easy read, audio recording or braille:
{% set block_id = 'button_get_in_touch' %}
- {% include 'layouts/_shared.html' %}
+ {% include 'components/common/buttons/_buttons_save_cancel.html' %}
We’ll consider your request and get back to you in 7 days.
diff --git a/templates/pages/user/_user.html b/templates/pages/user/_user.html
index d1897bc7..79b8716d 100644
--- a/templates/pages/user/_user.html
+++ b/templates/pages/user/_user.html
@@ -12,6 +12,7 @@
{% set firstname = 'new user' if user.firstname is none else user.firstname %}
Welcome, {{ firstname }}
{% set block_id = 'button_get_in_touch' %}
+ {% include 'components/common/buttons/_buttons_save_cancel.html' %}