<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Leaderboards - RYG</title>
    <script src="{{ url_for('static', filename='sorttable.js') }}"></script>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css"
          integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
    <link rel="stylesheet" href="{{ url_for('static', filename='royal.css') }}">
</head>
<body>
    <div class="container">
        <h1>
            Top Plays
        </h1>
        <table class="table table-hover sortable">
            <thead>
                <tr>
                    <th>URL</th>
                    <th>Plays</th>
                </tr>
            </thead>
            <tbody>
                {% for record in top_plays %}
                    <tr>
                        <td><a href="{{ record[0] }}">{{ record[0] }}</a></td>
                        <td>{{ record[1] }}</td>
                    </tr>
                {% endfor %}
            </tbody>
        </table>
    </div>
</body>
</html>