Merge branch 'master' of github.com:jamesturk/fowl

This commit is contained in:
James Turk 2012-05-27 15:07:17 -04:00
commit 05f82996cc
2 changed files with 54 additions and 6 deletions

View File

@ -9,12 +9,6 @@
PPVs, since the creation of this league.</p>
</header>
<h2>Events List:</h2>
<p>Yup, here are those events, collapsed in a nice way, click for
match details:</p>
<div class="accordion" id="accordion">
{% for event in events.values %}
<div class="accordion-group">

View File

@ -0,0 +1,54 @@
{% extends "base.html" %}
{% load static %}
{% block title %} Stables {% endblock %}
{% block content %}
<header class="jumbotron subhead" id="overview">
<h1>Stables</h1>
<p class="lead">Stables for our league!</p>
</header>
<table class="table">
<thead>
<tr>
<th> </th>
<th>GM Punk</th>
<th>I'm AWEsome</th>
<th>COBRA!</th>
</tr>
</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>
</tr>
</tbody>
</table>
{% endblock %}