diff --git a/fowl/game/templates/base.html b/fowl/game/templates/base.html index 01c2d34..e0a38e0 100644 --- a/fowl/game/templates/base.html +++ b/fowl/game/templates/base.html @@ -19,6 +19,7 @@ .raw { float: right; margin-right:12em; background-color: #900000;} .divas { float: right; margin-right:11em; background-color: #900099;} .smackdown { float: right; margin-right:8em; background-color: #003090;} + .other { float: right; margin-right:11em; } .score-container { float: right; margin-right:20em;} .nav { font-size: 120%; padding: 4px 0px;} @@ -45,6 +46,7 @@ diff --git a/fowl/game/templates/roster.html b/fowl/game/templates/roster.html index e0902cb..9d57c73 100644 --- a/fowl/game/templates/roster.html +++ b/fowl/game/templates/roster.html @@ -7,7 +7,7 @@

Roster

The WWE Roster

-


+
diff --git a/fowl/game/views.py b/fowl/game/views.py index b4d22e2..fec29e9 100644 --- a/fowl/game/views.py +++ b/fowl/game/views.py @@ -45,6 +45,7 @@ def league(request, league_id): def roster(request): context = { - 'stars': Star.objects.all() + 'stars': Star.objects.all(), + 'view': 'roster' } return render(request, "roster.html", context)