diff --git a/apps/member/templates/member/add_members.html b/apps/member/templates/member/add_members.html
index 8f429541dbf8e6999a764f63e1c0b98510b17b64..909e72b330c05804a894e9abfdec9fb288dfdba3 100644
--- a/apps/member/templates/member/add_members.html
+++ b/apps/member/templates/member/add_members.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "member/base.html" %}
 {% load crispy_forms_tags %}
 {% load static %}
 {% load i18n %}
diff --git a/apps/member/templates/member/noteowner_detail.html b/apps/member/templates/member/base.html
similarity index 100%
rename from apps/member/templates/member/noteowner_detail.html
rename to apps/member/templates/member/base.html
diff --git a/apps/member/templates/member/club_detail.html b/apps/member/templates/member/club_detail.html
index bd6e8399a254304a42c940bf47a6607dcd73ab6c..c3afee7b8e4356e9471e114113c76284abfc48e1 100644
--- a/apps/member/templates/member/club_detail.html
+++ b/apps/member/templates/member/club_detail.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "member/base.html" %}
 
 {% block profile_info %}
 {% include "member/club_info.html" %}
diff --git a/apps/member/templates/member/club_members.html b/apps/member/templates/member/club_members.html
index ed2debe46437086b15ffa717cf7299bef18cfd2e..9faff271f1f10618db1a4403ea37b20b753a6401 100644
--- a/apps/member/templates/member/club_members.html
+++ b/apps/member/templates/member/club_members.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "member/base.html" %}
 {% load i18n %}
 {% load render_table from django_tables2 %}
 
diff --git a/apps/member/templates/member/profile_detail.html b/apps/member/templates/member/profile_detail.html
index 297af21ca4214fd7d1c08c59de98ad9d4aa0c983..51ec3095dbb514b84bc6b3a352d0cc3394766e45 100644
--- a/apps/member/templates/member/profile_detail.html
+++ b/apps/member/templates/member/profile_detail.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "member/base.html" %}
 
 {% block profile_info %}
 {% include "member/profile_info.html" %}
diff --git a/apps/note/templates/note/search_transactions.html b/apps/note/templates/note/search_transactions.html
index 9239ee87621db6e7ce6844e3338ea9e681c316b2..2364a0b336e8d1e1c312378239128b2548438052 100644
--- a/apps/note/templates/note/search_transactions.html
+++ b/apps/note/templates/note/search_transactions.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "member/base.html" %}
 {% load render_table from django_tables2 %}
 {% load crispy_forms_tags %}
 
diff --git a/apps/wei/templates/wei/base.html b/apps/wei/templates/wei/base.html
new file mode 100644
index 0000000000000000000000000000000000000000..24778bafd54aad52f63f389e1957a170dd627b69
--- /dev/null
+++ b/apps/wei/templates/wei/base.html
@@ -0,0 +1 @@
+{% extends "member/base.html" %}
diff --git a/apps/wei/templates/wei/bus_detail.html b/apps/wei/templates/wei/bus_detail.html
index 1b335be8763e0e9d37a70a37230f68cc97822d80..fc5d14a27537173dc351851b4d33a0360b6b7587 100644
--- a/apps/wei/templates/wei/bus_detail.html
+++ b/apps/wei/templates/wei/bus_detail.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "wei/base.html" %}
 
 {% block profile_info %}
 {% include "wei/weiclub_info.html" %}
diff --git a/apps/wei/templates/wei/bus_form.html b/apps/wei/templates/wei/bus_form.html
index 4c7b22ce4a2ba0db9c912b3613043cb292108f72..3a2abfae112135305e5eb7eec13d67e30d75535b 100644
--- a/apps/wei/templates/wei/bus_form.html
+++ b/apps/wei/templates/wei/bus_form.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "wei/base.html" %}
 {% load crispy_forms_tags %}
 {% load i18n %}
 
diff --git a/apps/wei/templates/wei/busteam_detail.html b/apps/wei/templates/wei/busteam_detail.html
index 481e24ea6de01740a233d1ce668d0e7e58ca5a2f..e262d64fc061d38ae3ce818e5e91294ac287d824 100644
--- a/apps/wei/templates/wei/busteam_detail.html
+++ b/apps/wei/templates/wei/busteam_detail.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "wei/base.html" %}
 
 {% block profile_info %}
 {% include "wei/weiclub_info.html" %}
diff --git a/apps/wei/templates/wei/busteam_form.html b/apps/wei/templates/wei/busteam_form.html
index 4c7b22ce4a2ba0db9c912b3613043cb292108f72..3a2abfae112135305e5eb7eec13d67e30d75535b 100644
--- a/apps/wei/templates/wei/busteam_form.html
+++ b/apps/wei/templates/wei/busteam_form.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "wei/base.html" %}
 {% load crispy_forms_tags %}
 {% load i18n %}
 
diff --git a/apps/wei/templates/wei/survey.html b/apps/wei/templates/wei/survey.html
index 36553849eaf0d41a03c313d97db58b0c38578c43..357693fbfe1fa64c5856eb68bce341b5970413a8 100644
--- a/apps/wei/templates/wei/survey.html
+++ b/apps/wei/templates/wei/survey.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "wei/base.html" %}
 {% load i18n %}
 {% load crispy_forms_tags %}
 
diff --git a/apps/wei/templates/wei/survey_closed.html b/apps/wei/templates/wei/survey_closed.html
index 28c182ef73c093ff223936c6f4f0b0b58d94fd22..719168bea2071de3cbfee4ec0d14d53840db997b 100644
--- a/apps/wei/templates/wei/survey_closed.html
+++ b/apps/wei/templates/wei/survey_closed.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "wei/base.html" %}
 {% load i18n %}
 {% load crispy_forms_tags %}
 
diff --git a/apps/wei/templates/wei/survey_end.html b/apps/wei/templates/wei/survey_end.html
index 888290f7893b226322d0bc2356508f82deb2a449..a141a0369a8cb04f1dacbeeafac01d22affe793a 100644
--- a/apps/wei/templates/wei/survey_end.html
+++ b/apps/wei/templates/wei/survey_end.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "wei/base.html" %}
 {% load i18n %}
 {% load crispy_forms_tags %}
 
diff --git a/apps/wei/templates/wei/weiclub_detail.html b/apps/wei/templates/wei/weiclub_detail.html
index f359933f56447a71536a4519620cfcfae2e1bc70..4282964cd183b8f65807fb57f4646fc07efd352b 100644
--- a/apps/wei/templates/wei/weiclub_detail.html
+++ b/apps/wei/templates/wei/weiclub_detail.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "wei/base.html" %}
 
 {# Use a fluid-width container #}
 {% block containertype %}container-fluid{% endblock %}
diff --git a/apps/wei/templates/wei/weiclub_form.html b/apps/wei/templates/wei/weiclub_form.html
index 64edf7986b2b8776eacd11ee7c6827195fe43c7a..30af2ea78c8c1a64cda08a567d21e92fb976a764 100644
--- a/apps/wei/templates/wei/weiclub_form.html
+++ b/apps/wei/templates/wei/weiclub_form.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "wei/base.html" %}
 {% load crispy_forms_tags %}
 {% load i18n %}
 
diff --git a/apps/wei/templates/wei/weimembership_form.html b/apps/wei/templates/wei/weimembership_form.html
index 9a1a4d97b7c02f3f67fa8f5b2d5898d9b0844838..ba4401ef87a74dc2d6152fa41d8c7b0f0c399d87 100644
--- a/apps/wei/templates/wei/weimembership_form.html
+++ b/apps/wei/templates/wei/weimembership_form.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "wei/base.html" %}
 {% load crispy_forms_tags %}
 {% load i18n %}
 {% load pretty_money %}
diff --git a/apps/wei/templates/wei/weimembership_list.html b/apps/wei/templates/wei/weimembership_list.html
index d058211f32b861e9191815b559ae4911cbc75f59..e0ed72fae42572295e55d4ffecf80a38fcda8710 100644
--- a/apps/wei/templates/wei/weimembership_list.html
+++ b/apps/wei/templates/wei/weimembership_list.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "wei/base.html" %}
 {% load i18n %}
 {% load render_table from django_tables2 %}
 
diff --git a/apps/wei/templates/wei/weiregistration_confirm_delete.html b/apps/wei/templates/wei/weiregistration_confirm_delete.html
index 51bfc030d3c8633cdc7bd9483cd63cc6e7970c89..68d9c4a34e4357d5d4a42237f91e77ea71ae5862 100644
--- a/apps/wei/templates/wei/weiregistration_confirm_delete.html
+++ b/apps/wei/templates/wei/weiregistration_confirm_delete.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "wei/base.html" %}
 {% load i18n %}
 {% load crispy_forms_tags %}
 
diff --git a/apps/wei/templates/wei/weiregistration_form.html b/apps/wei/templates/wei/weiregistration_form.html
index 06a14be5cffa4f263aa00e89434d6866a3745cd4..5bec2c0fd471c91ffcaed89e180614efefc248c6 100644
--- a/apps/wei/templates/wei/weiregistration_form.html
+++ b/apps/wei/templates/wei/weiregistration_form.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "wei/base.html" %}
 {% load i18n %}
 {% load crispy_forms_tags %}
 
diff --git a/apps/wei/templates/wei/weiregistration_list.html b/apps/wei/templates/wei/weiregistration_list.html
index 88c217aa44f6428b3a36e6195f7fecde10034d27..0fa8ef0f8e3384c6487307a0afe1290519c6c036 100644
--- a/apps/wei/templates/wei/weiregistration_list.html
+++ b/apps/wei/templates/wei/weiregistration_list.html
@@ -1,4 +1,4 @@
-{% extends "member/noteowner_detail.html" %}
+{% extends "wei/base.html" %}
 {% load i18n %}
 {% load render_table from django_tables2 %}