From 20962c50036a49a68e2ecc3d54cf391bd8e8c6da Mon Sep 17 00:00:00 2001 From: James Turk Date: Fri, 1 Jun 2012 01:09:00 -0400 Subject: [PATCH] change name of divas belt and add teams --- fowl/game/models.py | 2 +- setup_league2.py | 31 ++++++++++++++++++++++++++++++- 2 files changed, 31 insertions(+), 2 deletions(-) diff --git a/fowl/game/models.py b/fowl/game/models.py index 7a5f978..06f0f13 100644 --- a/fowl/game/models.py +++ b/fowl/game/models.py @@ -18,7 +18,7 @@ TITLES = (('wwe', 'WWE'), ('ic', 'Intercontinental'), ('us', 'United States'), ('tag', 'Tag Team'), - ('diva', 'Divas'), + ('divas', 'Divas'), ) TITLE_DICT = dict(TITLES) diff --git a/setup_league2.py b/setup_league2.py index 46bdc44..9fc40e5 100644 --- a/setup_league2.py +++ b/setup_league2.py @@ -30,5 +30,34 @@ awesome = Team.objects.create(name="I'm AWEsome!", login=kevin, league=league, color='#f5a506') cobra = Team.objects.create(name='COBRA!', login=erin, league=league, color='#05c405') -pteam = Team.objects.create(name='I Will Rule You', login=patrick, +ruleyou = Team.objects.create(name='I Will Rule You', login=patrick, league=league, color='#a600c9') + +for star in ('cmpunk', 'johncena', 'jackswagger', + 'albertodelrio', 'ryback', 'damien-sandow', + 'darrenyoung', 'aj', 'bethphoenix', + 'ricflair', 'hbk'): + print star + awesome.add_star(star) + +for star in ('santinomarella', 'rtruth', 'brodusclay', + 'dolphziggler', 'thegreatkhali', 'titusoneil', + 'reymysterio', 'kaitlyn', 'natalya', + 'paulheyman', 'mickfoley'): + print star + cobra.add_star(star) + +for star in ('bigshow', 'davidotunga', 'themiz', + 'danielbryan', 'christian', 'williamregal', + 'zackryder', 'layla', 'eve', + 'roddypiper', 'edge'): + print star + ruleyou.add_star(star) + +for star in ('kofikingston', 'kane', 'masonryan', + 'sheamus', 'sin-cara', 'codyrhodes', + 'antoniocesaro', 'kharma', 'kellykelly', + 'brock-lesnar', 'jimross'): + print star + gm_punk.add_star(star) +