{% extends "base.html" %}
{% load static %}
{% block title %} {{league}} - FOWL {% endblock %}
{% block content %}
Belts
{% for belt, holder in belts.iteritems %}
|
Title holder: | {{holder.name}} |
Held Since: | {{holder.date}} |
Reign: | {{holder.date|timesince}} |
{% for team,points in holder.teams.iteritems %}
{{team}} | {{points}} |
{% endfor %}
{% endfor %}
Stables
{% for team in teams %}
{{team}} |
{% endfor %}
{% for star_set in star_sets %}
{% for star in star_set %}
{{star}}{{star.division}} |
{% endfor %}
{% endfor %}
{% endblock %}