{% extends 'base.html.twig' %}

{% block stylesheets %}
    <!-- Theme CSS - Includes Bootstrap -->
    <style type="text/css">
        .masthead{
            background: url(/img/bg-pattern.png),linear-gradient(to right,#943129,#826412) !important;
        }
        .red-strike {
            text-decoration: line-through;
            border: 1px solid red !important;
        }
        .success {
            background: #02c502;
            color: white;
            font-weight: 800;
            font-size: 20px;
        }
        .text-red {
            color: #00e765;
        }
    </style>
{% endblock %}
{% block body %}
    <header class="masthead">

        <div class="container h-100">

            <div class="row h-100 align-items-center justify-content-center text-center" style="background: #01013a">
                <div>
                    <button class="btn btn-outline-primary" onclick="window.history.back()">Back</button>
                </div>
                <div class="col-lg-10 align-self-end">

                    <h4 class="text-uppercase text-white font-weight-bold">{{ player.student.name }} - {{ player.student.club }}</h4>
                    <hr class="divider my-4">
                </div>
                <div class="col-lg-10 align-self-baseline">

                        <table class="table table-striped" style="background: #efeaea">
                            <tbody>
                            {% include 'player/_player_list.html.twig' with {'player' : player} %}
                            </tbody>
                        </table>
                    <h4 class="text-uppercase text-red mt-5 text-left">{{ player.kata.name }}</h4>
                </div>
            </div>
        </div>
    </header>
    <script type="text/javascript">
    setTimeout(function(){
    window.location.reload(1);
    }, 5000);
    </script>
{% endblock %}
