28 lines
1016 B
HTML
Executable File
28 lines
1016 B
HTML
Executable File
<!doctype html>
|
|
<head>
|
|
<title>Store Webview</title>
|
|
|
|
<script defer type='text/javascript' src="{{ url_for('static', filename='jquery_v3/jquery-3.3.1.slim.min.js') }}"></script>
|
|
<script defer type='text/javascript' src="{{ url_for('static', filename='popper_v1/popper.min.js') }}"></script>
|
|
<script defer type='text/javascript' src="{{ url_for('static', filename='bootstrap_v4/js/bootstrap.min.js') }}"></script>
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='bootstrap_v4/css/bootstrap.min.css') }}" />
|
|
|
|
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div class=page>
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
|
<a class="navbar-brand" href="{{ url_for('view_simulations') }}">Store</a>
|
|
<a class="nav-link" href="{{ url_for('view_statistics') }}">Statistics</a>
|
|
</nav>
|
|
{% for message in get_flashed_messages() %}
|
|
<div class=flash>{{ message }}</div>
|
|
{% endfor %}
|
|
<br />
|
|
<div class="container-fluid">
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</body> |