42 lines
1.3 KiB
HTML
42 lines
1.3 KiB
HTML
<ooctype html>
|
|
<head>
|
|
<title>List of player team appearances from 2018/19 season - Python Flask MySQL app</title>
|
|
<link rel="stylesheet" media="screen" href ="/static/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="/static/css/bootstrap-theme.min.css">
|
|
<meta name="viewport" content = "width=device-width, initial-scale=1.0">
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
|
<script src="/static/js/bootstrap.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<p>
|
|
{% with messages = get_flashed_messages() %}
|
|
{% if messages %}
|
|
<ul class=flashes>
|
|
{% for message in messages %}
|
|
<li>{{ message }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endwith %}
|
|
</p>
|
|
<a class="btn btn-primary" href="/dashboard" role="button">Home</a>
|
|
<table class="table table-striped table-bordered table-hover table-condensed">
|
|
<thead>
|
|
{%- for column in columns %}
|
|
<th>{{ column['Field'] }}</th>
|
|
{%- endfor %}
|
|
</thead>
|
|
|
|
<tbody>
|
|
{%- for row in rows %}
|
|
<tr>
|
|
{%- for column in columns %}
|
|
<td>{{ row[column['Field']] }}</td>
|
|
{%- endfor %}
|
|
</tr>
|
|
{%- endfor %}
|
|
</tbody>
|
|
</table>
|
|
<a class="btn btn-primary" href="/dashboard" role="button">Home</a>
|
|
</body>
|