-
+
{% for activity in started_activities %}
{% include "activity/includes/activity_info.html" %}
{% endfor %}
diff --git a/apps/member/templates/member/base.html b/apps/member/templates/member/base.html
index b474f736..650cd951 100644
--- a/apps/member/templates/member/base.html
+++ b/apps/member/templates/member/base.html
@@ -37,7 +37,6 @@ SPDX-License-Identifier: GPL-3.0-or-later
{% elif club %}
{% include "member/includes/club_info.html" %}
{% endif %}
- {% endblock %}
+ {% endblock %}
{% block profile_content %}{% endblock %}
diff --git a/apps/wei/templates/wei/base.html b/apps/wei/templates/wei/base.html
index 24778baf..db8f2c40 100644
--- a/apps/wei/templates/wei/base.html
+++ b/apps/wei/templates/wei/base.html
@@ -1 +1,110 @@
-{% extends "member/base.html" %}
+{% extends "base.html" %}
+{% comment %}
+SPDX-License-Identifier: GPL-3.0-or-later
+{% endcomment %}
+{% load i18n pretty_money perms %}
+{% block contenttitle %}{% endblock %}
+
+{# Use a fluid-width container #}
+{% block containertype %}container-fluid{% endblock %}
+
+{% block content %}
+
+
+ {% block profile_info %}
+ {% if club %}
+
+
+
+
+
+
+
+
+
+ {% trans 'name'|capfirst %}
+ {{ club.name }}
+
+ {% if club.require_memberships %}
+ {% trans 'date start'|capfirst %}
+ {{ club.date_start }}
+
+ {% trans 'date end'|capfirst %}
+ {{ club.date_end }}
+
+ {% trans 'year'|capfirst %}
+ {{ club.year }}
+
+ {% if club.membership_fee_paid == club.membership_fee_unpaid %}
+ {% trans 'membership fee'|capfirst %}
+ {{ club.membership_fee_paid|pretty_money }}
+ {% else %}
+ {% with bde_kfet_fee=club.parent_club.membership_fee_paid|add:club.parent_club.parent_club.membership_fee_paid %}
+ {% trans 'WEI fee (paid students)'|capfirst %}
+ {{ club.membership_fee_paid|add:bde_kfet_fee|pretty_money }}
+
+ {% endwith %}
+
+ {% with bde_kfet_fee=club.parent_club.membership_fee_unpaid|add:club.parent_club.parent_club.membership_fee_unpaid %}
+ {% trans 'WEI fee (unpaid students)'|capfirst %}
+ {{ club.membership_fee_unpaid|add:bde_kfet_fee|pretty_money }}
+
+ {% endwith %}
+ {% endif %}
+ {% endif %}
+
+ {% if "note.view_note"|has_perm:club.note %}
+ {% trans 'balance'|capfirst %}
+ {{ club.note.balance | pretty_money }}
+ {% endif %}
+
+ {% if "note.change_alias"|has_perm:club.note.alias_set.first %}
+ {% trans 'aliases'|capfirst %}
+ {{ club.note.alias_set.all|join:", " }}
+ {% endif %}
+
+ {% trans 'email'|capfirst %}
+ {{ club.email }}
+
+
+
+
+ {% endif %}
+ {% endblock %}
+
+
+ {% block profile_content %}{% endblock %}
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/apps/wei/templates/wei/bus_detail.html b/apps/wei/templates/wei/bus_detail.html
index fc5d14a2..00c901e7 100644
--- a/apps/wei/templates/wei/bus_detail.html
+++ b/apps/wei/templates/wei/bus_detail.html
@@ -1,9 +1,54 @@
{% extends "wei/base.html" %}
-
-{% block profile_info %}
-{% include "wei/weiclub_info.html" %}
-{% endblock %}
+{% load render_table from django_tables2 %}
+{% load i18n %}
{% block profile_content %}
-{% include "wei/bus_tables.html" %}
-{% endblock %}
+
+
+
+
+ {{ object.description }}
+
+
+
+
+
+
+
+{% if teams.data %}
+
+
+ {% render_table teams %}
+
+
+
+{% endif %}
+
+{% if memberships.data %}
+
+
+ {% render_table memberships %}
+
+
+
+
+
+ {% trans "View as PDF" %}
+
+{% endif %}
+{% endblock %}
\ No newline at end of file
diff --git a/apps/wei/templates/wei/bus_form.html b/apps/wei/templates/wei/bus_form.html
index 3a2abfae..c62fec40 100644
--- a/apps/wei/templates/wei/bus_form.html
+++ b/apps/wei/templates/wei/bus_form.html
@@ -1,15 +1,21 @@
{% extends "wei/base.html" %}
+{% comment %}
+SPDX-License-Identifier: GPL-3.0-or-later
+{% endcomment %}
{% load crispy_forms_tags %}
{% load i18n %}
-{% block profile_info %}
- {% include "wei/weiclub_info.html" %}
-{% endblock %}
-
{% block profile_content %}
-
-{% endblock %}
+
+{% endblock %}
\ No newline at end of file
diff --git a/apps/wei/templates/wei/bus_tables.html b/apps/wei/templates/wei/bus_tables.html
deleted file mode 100644
index 46509d8d..00000000
--- a/apps/wei/templates/wei/bus_tables.html
+++ /dev/null
@@ -1,50 +0,0 @@
-{% load render_table from django_tables2 %}
-{% load i18n %}
-
-
-
-
-
-
- {{ object.description }}
-
-
-
-
-
-
-
-{% if teams.data %}
-
-
- {% render_table teams %}
-
-
-
-{% endif %}
-
-{% if memberships.data %}
-
-
- {% render_table memberships %}
-
-
-
-
-
- {% trans "View as PDF" %}
-
-{% endif %}
diff --git a/apps/wei/templates/wei/busteam_detail.html b/apps/wei/templates/wei/busteam_detail.html
index e262d64f..f77dc3c9 100644
--- a/apps/wei/templates/wei/busteam_detail.html
+++ b/apps/wei/templates/wei/busteam_detail.html
@@ -1,9 +1,60 @@
{% extends "wei/base.html" %}
-
-{% block profile_info %}
-{% include "wei/weiclub_info.html" %}
-{% endblock %}
+{% load render_table from django_tables2 %}
+{% load i18n %}
{% block profile_content %}
-{% include "wei/busteam_tables.html" %}
-{% endblock %}
+
+
+
+
+ {{ bus.description }}
+
+
+
+
+
+
+
+
+
+
+
+ {{ object.description }}
+
+
+
+
+
+
+
+{% if memberships.data or True %}
+
+
+ {% render_table memberships %}
+
+
+
+
+
+ {% trans "View as PDF" %}
+
+{% endif %}
+{% endblock %}
\ No newline at end of file
diff --git a/apps/wei/templates/wei/busteam_form.html b/apps/wei/templates/wei/busteam_form.html
index 3a2abfae..c62fec40 100644
--- a/apps/wei/templates/wei/busteam_form.html
+++ b/apps/wei/templates/wei/busteam_form.html
@@ -1,15 +1,21 @@
{% extends "wei/base.html" %}
+{% comment %}
+SPDX-License-Identifier: GPL-3.0-or-later
+{% endcomment %}
{% load crispy_forms_tags %}
{% load i18n %}
-{% block profile_info %}
- {% include "wei/weiclub_info.html" %}
-{% endblock %}
-
{% block profile_content %}
-
-{% endblock %}
+
+{% endblock %}
\ No newline at end of file
diff --git a/apps/wei/templates/wei/busteam_tables.html b/apps/wei/templates/wei/busteam_tables.html
deleted file mode 100644
index 433405b8..00000000
--- a/apps/wei/templates/wei/busteam_tables.html
+++ /dev/null
@@ -1,54 +0,0 @@
-{% load render_table from django_tables2 %}
-{% load i18n %}
-
-
-
-
-
-
- {{ bus.description }}
-
-
-
-
-
-
-
-
-
-
-
-
- {{ object.description }}
-
-
-
-
-
-
-
-{% if memberships.data or True %}
-
-
- {% render_table memberships %}
-
-
-
-
-
- {% trans "View as PDF" %}
-
-{% endif %}
diff --git a/apps/wei/templates/wei/survey.html b/apps/wei/templates/wei/survey.html
index 357693fb..4bf18325 100644
--- a/apps/wei/templates/wei/survey.html
+++ b/apps/wei/templates/wei/survey.html
@@ -2,10 +2,6 @@
{% load i18n %}
{% load crispy_forms_tags %}
-{% block profile_info %}
-{% include "wei/weiclub_info.html" %}
-{% endblock %}
-
{% block profile_content %}