Skip to content

Commit

Permalink
re-order buttons and add room info to admin
Browse files Browse the repository at this point in the history
  • Loading branch information
dlareau committed Oct 21, 2015
1 parent 86dd39f commit 53390bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion huntserver/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class Team(models.Model):
location = models.CharField(max_length=80, blank=True)

def __unicode__(self):
return self.team_name
return "(" + self.location + ") " + self.team_name

class Person(models.Model):
first_name = models.CharField(max_length=20)
Expand Down

0 comments on commit 53390bd

Please sign in to comment.