[GH-ISSUE #448] templates/base.html does link to non local files: #334

Closed
opened 2026-02-27 16:38:55 +03:00 by kerem · 0 comments
Owner

Originally created by @daclarus on GitHub (Oct 4, 2014).
Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/448

template/base.html does not use the local version bootstrap

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">

should be
<link rel="stylesheet" href="{% static "css/bootstrap.min.css" %}">

<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>

should be
<script src="{% static "js/bootstrap.min.js" %}"></script>

Originally created by @daclarus on GitHub (Oct 4, 2014). Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/448 template/base.html does not use the local version bootstrap ``` <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> ``` should be &lt;link rel="stylesheet" href="{% static "css/bootstrap.min.css" %}"&gt; ``` <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> ``` should be &lt;script src="{% static "js/bootstrap.min.js" %}"&gt;&lt;/script&gt;
kerem closed this issue 2026-02-27 16:38:55 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/webvirtmgr#334
No description provided.