15 lines
576 B
HTML
15 lines
576 B
HTML
{% extends 'layouts/base.html' %}
|
|
|
|
{% 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') }}">
|
|
|
|
<script src="{{ url_for('static', path='assets/js/popper.min.js') }}"></script>
|
|
<script src="{{ url_for('static', path='assets/js/bootstrap.min.js') }}"></script>
|
|
{% endblock %}
|
|
|
|
|
|
|