From c4c0d4a007d4194558319888aab16c77578add90 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 17 Sep 2017 02:06:55 -0400 Subject: [PATCH] Rename the group user count column label from "Members" to "Users". Signed-off-by: Roberto Rosario --- HISTORY.rst | 1 + mayan/apps/user_management/apps.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index aa8bb496cc..3773c8401e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -12,6 +12,7 @@ and validation. - Add method to modify a group's role membership from the group's view. +- Rename the group user count column label from "Members" to "Users". 2.7.3 (2017-09-11) ================== diff --git a/mayan/apps/user_management/apps.py b/mayan/apps/user_management/apps.py index 301c6ddbc0..cad06c67f6 100644 --- a/mayan/apps/user_management/apps.py +++ b/mayan/apps/user_management/apps.py @@ -65,7 +65,7 @@ class UserManagementApp(MayanAppConfig): ) SourceColumn( - source=Group, label=_('Members'), attribute='user_set.count' + source=Group, label=_('Users'), attribute='user_set.count' ) SourceColumn(