diff --git a/app/groups/models.py b/app/groups/models.py index a0abfb2..82b6b6b 100644 --- a/app/groups/models.py +++ b/app/groups/models.py @@ -54,7 +54,7 @@ class GroupRequest(models.Model): def character(self): char = self.user.get_profile().primary_character if char: - return "[%s]%s" % (char.corporation.ticker, char.name) + return "[%s] %s" % (char.corporation.ticker, char.name) else: return "Unknown" diff --git a/app/groups/views.py b/app/groups/views.py index c26514d..220d283 100644 --- a/app/groups/views.py +++ b/app/groups/views.py @@ -136,7 +136,7 @@ def admin_group(request, groupid): char = member.get_profile().primary_character if char: - charname = "[%s]%s" % (char.corporation.ticker, char.name) + charname = "[%s] %s" % (char.corporation.ticker, char.name) else: charname = "Unknown"