|
1 | 1 | {% extends "codespeed/base_site.html" %} |
2 | 2 |
|
| 3 | +{% load static %} |
| 4 | + |
3 | 5 | {% block title %}{{ block.super }}: Timeline{% endblock %} |
4 | 6 | {% block description %}{% if pagedesc %}{{ pagedesc }}{% else %}{{ block.super }}{% endif %}{% endblock %} |
5 | 7 |
|
6 | 8 | {% block extra_head %} |
7 | 9 | {{ block.super }} |
8 | | - <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}/css/timeline.css" /> |
9 | | - <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}js/jqplot/jquery.jqplot.min.css" /> |
| 10 | + <link rel="stylesheet" type="text/css" href="{% static '/css/timeline.css' %}" /> |
| 11 | + <link rel="stylesheet" type="text/css" href="{% static 'js/jqplot/jquery.jqplot.min.css' %}" /> |
10 | 12 | {% endblock %} |
11 | 13 |
|
12 | 14 | {% block navigation %} |
|
106 | 108 |
|
107 | 109 | {% block extra_body %} |
108 | 110 | {{ block.super }} |
109 | | -<!--[if lt IE 9]><script language="javascript" type="text/javascript" src="{{ STATIC_URL }}js/jqplot/excanvas.min.js"></script><![endif]--> |
110 | | -<script type="text/javascript" src="{{ STATIC_URL }}js/jquery.address-1.6.min.js?autoUpdate=0"></script> |
111 | | -<script type="text/javascript" src="{{ STATIC_URL }}js/jqplot/jquery.jqplot.min.js"></script> |
112 | | -<script type="text/javascript" src="{{ STATIC_URL }}js/jqplot/jqplot.cursor.min.js"></script> |
113 | | -<script type="text/javascript" src="{{ STATIC_URL }}js/jqplot/jqplot.highlighter.min.js"></script> |
114 | | -<script type="text/javascript" src="{{ STATIC_URL }}js/jqplot/jqplot.dateAxisRenderer.min.js"></script> |
115 | | -<script type="text/javascript" src="{{ STATIC_URL }}js/jqplot/jqplot.categoryAxisRenderer.min.js"></script> |
116 | | -<script type="text/javascript" src="{{ STATIC_URL }}js/jqplot/jqplot.canvasTextRenderer.min.js"></script> |
117 | | -<script type="text/javascript" src="{{ STATIC_URL }}js/jqplot/jqplot.canvasAxisLabelRenderer.min.js"></script> |
| 111 | +<!--[if lt IE 9]><script language="javascript" type="text/javascript" src="{% static 'js/jqplot/excanvas.min.js' %}"></script><![endif]--> |
| 112 | +<script type="text/javascript" src="{% static 'js/jquery.address-1.6.min.js?autoUpdate=0' %}"></script> |
| 113 | +<script type="text/javascript" src="{% static 'js/jqplot/jquery.jqplot.min.js' %}"></script> |
| 114 | +<script type="text/javascript" src="{% static 'js/jqplot/jqplot.cursor.min.js' %}"></script> |
| 115 | +<script type="text/javascript" src="{% static 'js/jqplot/jqplot.highlighter.min.js' %}"></script> |
| 116 | +<script type="text/javascript" src="{% static 'js/jqplot/jqplot.dateAxisRenderer.min.js' %}"></script> |
| 117 | +<script type="text/javascript" src="{% static 'js/jqplot/jqplot.categoryAxisRenderer.min.js' %}"></script> |
| 118 | +<script type="text/javascript" src="{% static 'js/jqplot/jqplot.canvasTextRenderer.min.js' %}"></script> |
| 119 | +<script type="text/javascript" src="{% static 'js/jqplot/jqplot.canvasAxisLabelRenderer.min.js' %}"></script> |
118 | 120 | <script type="text/javascript"> |
119 | 121 | var CHANGES_URL = "{% url "changes" %}"; |
120 | 122 | </script> |
121 | | -<script type="text/javascript" src="{{ STATIC_URL }}js/timeline.js"></script> |
| 123 | +<script type="text/javascript" src="{% static 'js/timeline.js' %}"></script> |
122 | 124 | <script type="text/javascript"> |
123 | 125 | $(function() { |
124 | 126 | Timeline.init({ |
|
135 | 137 | }); |
136 | 138 | </script> |
137 | 139 | {% endblock %} |
138 | | - |
|
0 commit comments