removed "url_for" to prevent proxy http/https missmatch
This commit is contained in:
@@ -2,12 +2,12 @@
|
||||
|
||||
{% block styles %}
|
||||
{{ super() }}
|
||||
<link rel="stylesheet" type="text/css" href="{{ url_for('static', path='assets/css/bootstrap.min.css') }}">
|
||||
<link rel="stylesheet" type="text/css" href="{{ url_for('static', path='assets/css/bootstrap-icons.min.css') }}">
|
||||
<link rel="stylesheet" type="text/css" href="{{ url_for('static', path='assets/css/dashboard.css') }}">
|
||||
<link rel="stylesheet" type="text/css" href="/static/assets/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/static/assets/css/bootstrap-icons.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/static/assets/css/dashboard.css">
|
||||
|
||||
<script src="{{ url_for('static', path='assets/js/popper.min.js') }}"></script>
|
||||
<script src="{{ url_for('static', path='assets/js/bootstrap.min.js') }}"></script>
|
||||
<script src="/static/assets/js/popper.min.js"></script>
|
||||
<script src="/static/assets/js/bootstrap.min.js"></script>
|
||||
{% endblock %}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user