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%; }
.match-notes { font-size: 80%; color: #999999; }
.belt-img img { display: block; margin-left: auto; margin-right: auto }
</style>
<link href="{% static "assets/css/bootstrap-responsive.css" %}" rel="stylesheet">

View File

@ -10,11 +10,15 @@
<br><br>
<h2>Belts</h2>
<br><br>
<div class="row-fluid">
<div class="row-fluid">
<!-- begin belt block -->
{% for belt in belts %}
<div class="span3">
<table class="table">
<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>
<tody>
<tr>
@ -32,78 +36,16 @@
</tbody>
</table>
</div>
<div class="span3">
<table class="table">
<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>
{% endfor %}
<!-- end belt block -->
</div>
<br><br><br>
<h2> Stables </h2>
<table class="table">
<thead>
<tr>
<th> </th>
<th>GM Punk</th>
<th>I'm AWEsome</th>
<th>COBRA!</th>
@ -111,31 +53,26 @@
</thead>
<tbody>
<tr>
<td>Raw 1</td>
<td>CM Punk</td>
<td>Brodus Clay</td>
<td>Santino</td>
</tr>
<tr>
<td>Raw 2</td>
<td>Kane</td>
<td>John Cena</td>
<td>Dolph Ziggler</td>
</tr>
<tr>
<td>Raw 3</td>
<td>R Truth</td>
<td>Chris Jericho</td>
<td>Kofi Kingston</td>
</tr>
<tr>
<td>Smackdown 1</td>
<td>Cody Rhodes</td>
<td>Sheamus</td>
<td>Alberto del Rio</td>
</tr>
<tr>
<td>Smackdown 2</td>
<td>Sin Cara</td>
<td>Daniel Bryan</td>
<td>Randy Orton</td>

View File

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