2019-04-18 17:34:36 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
{% block head %}
|
|
|
|
<!-- Required meta tags -->
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
2021-06-17 02:36:01 +02:00
|
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}"
|
2024-04-29 13:09:54 +02:00
|
|
|
{{get_sri('static', 'favicon.ico')}}
|
2021-06-17 02:36:01 +02:00
|
|
|
crossorigin="anonymous">
|
2017-07-23 19:56:51 +02:00
|
|
|
|
2019-04-18 17:34:36 +02:00
|
|
|
{% block styles %}
|
|
|
|
<!-- Bootstrap CSS -->
|
|
|
|
{{ bootstrap.load_css() }}
|
2021-06-17 02:36:01 +02:00
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='generic.css') }}"
|
2024-04-29 13:09:54 +02:00
|
|
|
{{get_sri('static', 'generic.css')}}
|
2021-06-17 02:36:01 +02:00
|
|
|
crossorigin="anonymous">
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='datatables.min.css') }}"
|
2024-04-29 13:09:54 +02:00
|
|
|
{{get_sri('static', 'datatables.min.css')}}
|
2021-06-17 02:36:01 +02:00
|
|
|
crossorigin="anonymous">
|
2019-04-18 17:34:36 +02:00
|
|
|
{% endblock %}
|
2021-05-11 19:52:55 +02:00
|
|
|
|
2021-01-17 12:41:01 +01:00
|
|
|
<title>{% block title %}{% endblock%}</title>
|
|
|
|
|
|
|
|
{% block card %}{% endblock %}
|
|
|
|
|
2019-04-18 17:34:36 +02:00
|
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
2020-02-04 19:15:44 +01:00
|
|
|
<!-- Your page content -->
|
2020-02-10 01:55:03 +01:00
|
|
|
<div class="container">
|
2020-02-03 18:30:41 +01:00
|
|
|
{% block content %}{% endblock%}
|
|
|
|
</div>
|
2017-09-25 15:11:01 +02:00
|
|
|
|
2020-11-26 22:26:22 +01:00
|
|
|
{% block scripts %}
|
|
|
|
<!-- Optional JavaScript -->
|
2024-09-04 16:30:33 +02:00
|
|
|
{{ bootstrap.load_js(nonce=csp_nonce()) }}
|
2022-01-14 15:58:06 +01:00
|
|
|
<script src='{{ url_for('static', filename='jquery.min.js') }}'
|
2024-04-29 13:09:54 +02:00
|
|
|
{{get_sri('static', 'jquery.min.js')}}
|
2024-09-04 16:30:33 +02:00
|
|
|
nonce="{{ csp_nonce() }}"
|
2022-01-14 15:58:06 +01:00
|
|
|
crossorigin="anonymous"></script>
|
2021-06-17 02:36:01 +02:00
|
|
|
<script src='{{ url_for('static', filename='datatables.min.js') }}'
|
2024-04-29 13:09:54 +02:00
|
|
|
{{get_sri('static', 'datatables.min.js')}}
|
2024-09-04 16:30:33 +02:00
|
|
|
nonce="{{ csp_nonce() }}"
|
2021-06-17 02:36:01 +02:00
|
|
|
crossorigin="anonymous"></script>
|
2022-03-30 13:48:10 +02:00
|
|
|
<script src='{{ url_for('static', filename='generic.js') }}'
|
2024-04-29 13:09:54 +02:00
|
|
|
{{get_sri('static', 'generic.js')}}
|
2024-09-04 16:30:33 +02:00
|
|
|
nonce="{{ csp_nonce() }}"
|
2022-03-30 13:48:10 +02:00
|
|
|
crossorigin="anonymous"></script>
|
2020-11-26 22:26:22 +01:00
|
|
|
{% endblock %}
|
2019-04-18 17:34:36 +02:00
|
|
|
</body>
|
|
|
|
</html>
|