various changes

This commit is contained in:
Erin Braswell 2012-05-27 21:19:12 -04:00
parent 02b448d554
commit 2627a8c1a5
3 changed files with 12 additions and 73 deletions

View File

@ -14,6 +14,7 @@
} }
.event-title { font-size: 125%; } .event-title { font-size: 125%; }
.match-notes { font-size: 80%; color: #999999; } .match-notes { font-size: 80%; color: #999999; }
.belt-img img { display: block; margin-left: auto; margin-right: auto }
</style> </style>
<link href="{% static "assets/css/bootstrap-responsive.css" %}" rel="stylesheet"> <link href="{% static "assets/css/bootstrap-responsive.css" %}" rel="stylesheet">

View File

@ -11,10 +11,14 @@
<h2>Belts</h2> <h2>Belts</h2>
<br><br> <br><br>
<div class="row-fluid"> <div class="row-fluid">
<!-- begin belt block -->
{% for belt in belts %}
<div class="span3"> <div class="span3">
<table class="table"> <table class="table">
<thead> <thead>
<tr> <img src="{% static "images/ic.png" %}"></tr> <tr>
<td class="belt-img" colspan="2"><img src="{% get_static_prefix %}images/{{belt}}.png"></td>
</tr>
</thead> </thead>
<tody> <tody>
<tr> <tr>
@ -32,78 +36,16 @@
</tbody> </tbody>
</table> </table>
</div> </div>
<div class="span3"> {% endfor %}
<table class="table"> <!-- end belt block -->
<thead>
<tr> <img src="{% static "images/us.png" %}"></tr>
</thead>
<tody>
<tr>
<td>Title holder:</td>
<td>I'm AWEsome</td>
</tr>
<tr>
<td>Held Since:</td>
<td>5/18/2012</td>
</tr>
<tr>
<td>Reign:</td>
<td>8</td>
</tr>
</tbody>
</table>
</div>
<div class="span3">
<table class="table">
<thead>
<tr> <img src="{% static "images/heavyweight.png" %}"></tr>
</thead>
<tody>
<tr>
<td>Title holder:</td>
<td>I'm AWEsome</td>
</tr>
<tr>
<td>Held Since:</td>
<td>5/18/2012</td>
</tr>
<tr>
<td>Reign:</td>
<td>8</td>
</tr>
</tbody>
</table>
</div>
<div class="span3">
<table class="table">
<thead>
<tr> <img src="{% static "images/wwe.png" %}"></tr>
</thead>
<tody>
<tr>
<td>Title holder:</td>
<td>I'm AWEsome</td>
</tr>
<tr>
<td>Held Since:</td>
<td>5/18/2012</td>
</tr>
<tr>
<td>Reign:</td>
<td>8</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<br><br><br> <br><br><br>
<h2> Stables </h2> <h2> Stables </h2>
<table class="table"> <table class="table">
<thead> <thead>
<tr> <tr>
<th> </th>
<th>GM Punk</th> <th>GM Punk</th>
<th>I'm AWEsome</th> <th>I'm AWEsome</th>
<th>COBRA!</th> <th>COBRA!</th>
@ -111,31 +53,26 @@
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td>Raw 1</td>
<td>CM Punk</td> <td>CM Punk</td>
<td>Brodus Clay</td> <td>Brodus Clay</td>
<td>Santino</td> <td>Santino</td>
</tr> </tr>
<tr> <tr>
<td>Raw 2</td>
<td>Kane</td> <td>Kane</td>
<td>John Cena</td> <td>John Cena</td>
<td>Dolph Ziggler</td> <td>Dolph Ziggler</td>
</tr> </tr>
<tr> <tr>
<td>Raw 3</td>
<td>R Truth</td> <td>R Truth</td>
<td>Chris Jericho</td> <td>Chris Jericho</td>
<td>Kofi Kingston</td> <td>Kofi Kingston</td>
</tr> </tr>
<tr> <tr>
<td>Smackdown 1</td>
<td>Cody Rhodes</td> <td>Cody Rhodes</td>
<td>Sheamus</td> <td>Sheamus</td>
<td>Alberto del Rio</td> <td>Alberto del Rio</td>
</tr> </tr>
<tr> <tr>
<td>Smackdown 2</td>
<td>Sin Cara</td> <td>Sin Cara</td>
<td>Daniel Bryan</td> <td>Daniel Bryan</td>
<td>Randy Orton</td> <td>Randy Orton</td>

View File

@ -29,4 +29,5 @@ def edit_event(request, event_id=None):
def stables(request): def stables(request):
return render(request, "stables.html") context = {'belts':['ic', 'us', 'heavyweight', 'wwe']}
return render(request, "stables.html", context)