mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
Spacing makes the difference
This commit is contained in:
@@ -54,7 +54,7 @@ class GroupRequest(models.Model):
|
|||||||
def character(self):
|
def character(self):
|
||||||
char = self.user.get_profile().primary_character
|
char = self.user.get_profile().primary_character
|
||||||
if char:
|
if char:
|
||||||
return "[%s]%s" % (char.corporation.ticker, char.name)
|
return "[%s] %s" % (char.corporation.ticker, char.name)
|
||||||
else:
|
else:
|
||||||
return "Unknown"
|
return "Unknown"
|
||||||
|
|
||||||
|
|||||||
@@ -136,7 +136,7 @@ def admin_group(request, groupid):
|
|||||||
|
|
||||||
char = member.get_profile().primary_character
|
char = member.get_profile().primary_character
|
||||||
if char:
|
if char:
|
||||||
charname = "[%s]%s" % (char.corporation.ticker, char.name)
|
charname = "[%s] %s" % (char.corporation.ticker, char.name)
|
||||||
else:
|
else:
|
||||||
charname = "Unknown"
|
charname = "Unknown"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user