mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-13 22:32:15 +00:00
Spacing makes the difference
This commit is contained in:
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user