{% 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.

New Event

{% for event in events %}
{{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}}

{{match.notes}}

    {% for tp in tp_list %} {% if tp.points %}
  • {{tp.team}} received {{tp.points}} point{{tp.points|pluralize}} for {{tp.star}}
  • {% endif %} {% endfor %}

Edit Event

{% endfor %} {% endblock %}