diff --git a/maps/templates/maps/account_settings.html b/maps/templates/maps/account_settings.html
index 647b7ab..a64beb7 100644
--- a/maps/templates/maps/account_settings.html
+++ b/maps/templates/maps/account_settings.html
@@ -8,6 +8,7 @@
{% trans "Home" %}
{% trans 'Account settings' %}
+ {% include 'maps/partials/messages.html' %}
- {% trans 'Manage email addresses' %}
diff --git a/maps/templates/maps/index.html b/maps/templates/maps/index.html
index ebffbe3..00e097d 100644
--- a/maps/templates/maps/index.html
+++ b/maps/templates/maps/index.html
@@ -8,6 +8,7 @@
Platform Co-op
Directory
The Platform Co-op Directory is a place where you can search for and connect with co-operatives and other members of the co-operative community.
+ {% include 'maps/partials/messages.html' %}
{% include 'maps/search--home.html' %}
{% include 'maps/filters.html' %}
diff --git a/maps/templates/maps/individual_detail.html b/maps/templates/maps/individual_detail.html
index f4577fe..5628c0f 100644
--- a/maps/templates/maps/individual_detail.html
+++ b/maps/templates/maps/individual_detail.html
@@ -32,7 +32,7 @@ {{ individual.first_name }} {{ individual.last_name }}
{% endif %}
-
+ {% include 'maps/partials/messages.html' %}
{% trans 'tab group' %}
diff --git a/maps/templates/maps/my_profiles.html b/maps/templates/maps/my_profiles.html
index 227cc16..ae55312 100644
--- a/maps/templates/maps/my_profiles.html
+++ b/maps/templates/maps/my_profiles.html
@@ -8,11 +8,7 @@
{% trans 'Home' %}
{% trans 'My profiles' %}
- {% if messages %}
- {% for message in messages %}
- {% include 'maps/partials/notification.html' %}
- {% endfor %}
- {% endif %}
+ {% include 'maps/partials/messages.html' %}
{% trans 'Personal profile' %}
{% if user.has_profile %}
diff --git a/maps/templates/maps/organization_detail.html b/maps/templates/maps/organization_detail.html
index 0cdd2dd..dcc23c0 100644
--- a/maps/templates/maps/organization_detail.html
+++ b/maps/templates/maps/organization_detail.html
@@ -5,7 +5,6 @@
{% block bodyclass %}profile profile--organization{% endblock %}
{% block content %}
+ {% include 'maps/partials/messages.html' %}
{% trans 'tab group' %}
diff --git a/maps/templates/maps/partials/messages.html b/maps/templates/maps/partials/messages.html
new file mode 100644
index 0000000..9ea3656
--- /dev/null
+++ b/maps/templates/maps/partials/messages.html
@@ -0,0 +1,5 @@
+{% if messages %}
+ {% for message in messages %}
+ {% include 'maps/partials/notification.html' %}
+ {% endfor %}
+{% endif %}