Changeset - c5ec7e548257
[Not reviewed]
0 1 0
Tobias - 5 years ago 2019-01-17 04:48:25
tobiasschulmann@catalyst.net.nz
Fix badge
1 file changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
pinaxcon/registrasion/models.py
Show inline comments
...
 
@@ -216,4 +216,5 @@ class AttendeeProfile(rego.AttendeeProfileBase):
 
        return wrap(self.name, 15, break_long_words=False)[0]
 

	
 
    def last_name(self):
 
        return wrap(self.name, 15, break_long_words=False)[1]
 
        names = wrap(self.name, 15, break_long_words=False)
 
        return names[1] if len(names) > 1 else ''
...
 
\ No newline at end of file
0 comments (0 inline, 0 general)