diff --git a/apps/member/tables.py b/apps/member/tables.py index 46be76e7..836b3555 100644 --- a/apps/member/tables.py +++ b/apps/member/tables.py @@ -42,12 +42,12 @@ class UserTable(tables.Table): """ alias = tables.Column() - section = tables.Column(accessor='profile__section') + section = tables.Column(accessor='profile__section', orderable=False) # Override the column to let replace the URL email = tables.EmailColumn(linkify=lambda record: "mailto:{}".format(record.email)) - balance = tables.Column(accessor='note__balance', verbose_name=_("Balance")) + balance = tables.Column(accessor='note__balance', verbose_name=_("Balance"), orderable=False) def render_email(self, record, value): # Replace the email by a dash if the user can't see the profile detail diff --git a/apps/member/templates/member/club_members.html b/apps/member/templates/member/club_members.html index 3645050a..bbeb875e 100644 --- a/apps/member/templates/member/club_members.html +++ b/apps/member/templates/member/club_members.html @@ -11,7 +11,7 @@ SPDX-License-Identifier: GPL-3.0-or-later {{ title }}
- +