Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion plexus/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@

<link rel="shortcut icon" href="{{STATIC_URL}}img/favicon.ico" type="image/x-icon" />
{% block css %}{% endblock %}
<script src="{{STATIC_URL}}js/lib/jquery-3.4.1.min.js"></script>
<script src="{{STATIC_URL}}js/lib/jquery-3.4.1.min.js"
crossorigin="anonymous"></script>

{% block feeds %}{% endblock %}
</head>
Expand Down
6 changes: 4 additions & 2 deletions plexus/templates/main/application_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,10 @@ <h3 id="myModalLabel">Add Contact</h3>
{% endblock %}

{% block js %}
<script src="{{STATIC_URL}}js/d3.v2.min.js"></script>
<script src="{{STATIC_URL}}js/smoketests.js"></script>
<script src="{{STATIC_URL}}js/d3.v2.min.js"
crossorigin="anonymous"></script>
<script src="{{STATIC_URL}}js/smoketests.js"
crossorigin="anonymous"></script>
<script>
(function () {
window.makesmoketests("#smoketests", "{{object.graphite_name}}");
Expand Down
6 changes: 4 additions & 2 deletions plexus/templates/main/contact_dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ <h1>Dashboard for {{object.name}}</h1>


{% block js %}
<script src="{{STATIC_URL}}js/d3.v2.min.js"></script>
<script src="{{STATIC_URL}}js/cubism.v1.min.js"></script>
<script src="{{STATIC_URL}}js/d3.v2.min.js"
crossorigin="anonymous"></script>
<script src="{{STATIC_URL}}js/cubism.v1.min.js"
crossorigin="anonymous"></script>
<script>

var serverMetrics = function(graphiteName, serverName) {
Expand Down
3 changes: 2 additions & 1 deletion plexus/templates/main/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@


{% block js %}
<script src="{% static 'js/lib/tablesorter/jquery.tablesorter.min.js' %}"></script>
<script src="{% static 'js/lib/tablesorter/jquery.tablesorter.min.js' %}"
crossorigin="anonymous"></script>
<script>
jQuery(document).ready(function () {
jQuery('.tablesorter').tablesorter({
Expand Down
Loading