{% extends "base.html" %} {% block content %}
| Match | Outcome | Amount | Result | Actions |
|---|---|---|---|---|
|
Match #{{ detail.match.match_number }} {{ detail.match.fighter1_township }} vs {{ detail.match.fighter2_township }} |
{{ detail.outcome }} | €{{ detail.amount|round(2) }} | {% if detail.result == 'pending' %} Pending {% elif detail.result == 'win' %} Won {% elif detail.result == 'lost' %} Lost {% elif detail.result == 'cancelled' %} Cancelled {% endif %} | {% if detail.result == 'pending' %} {% else %} No actions {% endif %} |