diff --git a/apps/member/templates/member/add_members.html b/apps/member/templates/member/add_members.html
index 909e72b3..05aad9a4 100644
--- a/apps/member/templates/member/add_members.html
+++ b/apps/member/templates/member/add_members.html
@@ -4,10 +4,6 @@
{% load i18n %}
{% load pretty_money %}
-{% block profile_info %}
-{% include "member/club_info.html" %}
-{% endblock %}
-
{% block profile_content %}
{% if additional_fee_renewal %}
diff --git a/apps/member/templates/member/base.html b/apps/member/templates/member/base.html
index b61d869c..c52760c3 100644
--- a/apps/member/templates/member/base.html
+++ b/apps/member/templates/member/base.html
@@ -11,24 +11,39 @@ SPDX-License-Identifier: GPL-3.0-or-later
{% block profile_info %}
- {% include "member/profile_info.html" %}
+ {% if user_object %}
+ {% include "member/includes/profile_info.html" %}
+ {% elif club %}
+ {% include "member/includes/club_info.html" %}
+ {% elif note.club.weiclub %}
+ {% with club=note.club.weiclub %}
+ {% include "wei/weiclub_info.html" %}
+ {% endwith %}
+ {% elif note.club %}
+ {% with club=note.club %}
+ {% include "member/includes/club_info.html" %}
+ {% endwith %}
+ {% elif note.user %}
+ {% with user_object=note.user %}
+ {% include "member/includes/profile_info.html" %}
+ {% endwith %}
+ {% endif %}
{% endblock %}
{% block profile_content %}
- {% include "member/profile_tables.html" %}
{% endblock %}
{% endblock %}
{% block extrajavascript %}
+{% if object %}
+{% endif %}
{% endblock %}
\ No newline at end of file
diff --git a/apps/member/templates/member/club_alias.html b/apps/member/templates/member/club_alias.html
index 60e2bef0..e574e41d 100644
--- a/apps/member/templates/member/club_alias.html
+++ b/apps/member/templates/member/club_alias.html
@@ -1,4 +1,4 @@
-{% extends "member/club_detail.html" %}
+{% extends "member/base.html" %}
{% load static django_tables2 i18n %}
{% block profile_content %}
diff --git a/apps/member/templates/member/club_detail.html b/apps/member/templates/member/club_detail.html
index c3afee7b..c05b20ab 100644
--- a/apps/member/templates/member/club_detail.html
+++ b/apps/member/templates/member/club_detail.html
@@ -1,11 +1,47 @@
{% extends "member/base.html" %}
-
-{% block profile_info %}
-{% include "member/club_info.html" %}
-{% endblock %}
+{% load render_table from django_tables2 %}
+{% load i18n perms %}
{% block profile_content %}
-{% include "member/club_tables.html" %}
+{% if managers.data %}
+
+
+ {% render_table managers %}
+
+
+
+{% endif %}
+
+{% if member_list.data %}
+
+
+ {% render_table member_list %}
+
+
+
+{% endif %}
+
+{% if history_list.data %}
+
+
+
+ {% render_table history_list %}
+
+
+{% endif %}
{% endblock %}
{% block extrajavascript %}
diff --git a/apps/member/templates/member/club_members.html b/apps/member/templates/member/club_members.html
index 9faff271..075e3c75 100644
--- a/apps/member/templates/member/club_members.html
+++ b/apps/member/templates/member/club_members.html
@@ -2,10 +2,6 @@
{% load i18n %}
{% load render_table from django_tables2 %}
-{% block profile_info %}
- {% include "member/club_info.html" %}
-{% endblock %}
-
{% block profile_content %}