{% extends "base.html" %} {% load static %} {% block title %} Events {% endblock %} {% block content %}

Events

Every event that has taken place on RAW, Smackdown, and on PPVs, since the creation of this league.

Events List:

Yup, here are those events, collapsed in a nice way, click for match details:

{% for event in events.values %}
{{event.name}} - {{event.date}} {% for team,score in event.scores.iteritems %} {{team}}: {{score}} {% endfor %}
{% for match, tp_list in event.match_list.items %} {% endfor %}
Event Scoring
{{match}}
    {% for tp in tp_list %} {% if tp.points %}
  • {{tp.team}} received {{tp.points}} point{{tp.points|pluralize}} for {{tp.star}}
  • {% endif %} {% endfor %}
{% endfor %}
{% endblock %}