Fix: typo

Fix css file path
This commit is contained in:
Candifloss 2025-04-06 20:59:10 +05:30
parent 63daf7dd1e
commit 1a5f8f52b1

View File

@ -6,7 +6,7 @@
<title>View Inventory</title> <title>View Inventory</title>
{% include 'favicon.html' %} {% include 'favicon.html' %}
<link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet"> <link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='static/css/view_table.css') }}" rel="stylesheet"> <link href="{{ url_for('static', filename='css/view_table.css') }}" rel="stylesheet">
</head> </head>
<body> <body>
{% include 'header.html' %} {% include 'header.html' %}
@ -54,6 +54,6 @@
</main> </main>
{% include 'footer.html' %} {% include 'footer.html' %}
<script src="{{ url_for('static', filename='js/bootstrap.bundle.min.js') }}"></script> <script src="{{ url_for('static', filename='js/bootstrap.min.js') }}"></script>
</body> </body>
</html> </html>