Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added '*' in front of users who are marked inactive at organization l… #1077

Merged
merged 2 commits into from
Sep 23, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions backend/organizations/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ def user_analytics(self, request, pk=None):
and project_progress_stage > ANNOTATION_STAGE
):
temp_result = {
"Annotator": name,
"Annotator": "*" + name if not annotator.is_active else name,
"Email": email,
"Language": selected_language,
"No. of Workspaces": no_of_workspaces_objs,
Expand Down Expand Up @@ -870,7 +870,7 @@ def user_analytics(self, request, pk=None):
temp_result["Avergae Char Score"] = avg_char_score
else:
temp_result = {
"Annotator": name,
"Annotator": "*" + name if not annotator.is_active else name,
"Email": email,
"Language": selected_language,
"No. of Workspaces": no_of_workspaces_objs,
Expand Down
Loading