diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-15 09:02:16 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-15 09:02:16 +0100 |
commit | 7993028f58b9aa736fda342284c9ee2c913d3658 (patch) | |
tree | 6873fde2861f39e721302f0aeb54f08e59ec8394 /ctrack/templates/base.html | |
parent | 2fe19119ae271e0a6dc94fdf37c646d7bfb8e767 (diff) |
datatables buttons now work
Diffstat (limited to 'ctrack/templates/base.html')
-rw-r--r-- | ctrack/templates/base.html | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/ctrack/templates/base.html b/ctrack/templates/base.html index ff396e9..f91b2f0 100644 --- a/ctrack/templates/base.html +++ b/ctrack/templates/base.html @@ -26,10 +26,8 @@ {# <link href="jumbotron.css" rel="stylesheet">#} <!-- This file stores project-specific CSS --> - <link rel="stylesheet" type="text/css" href="{% static "css/datatables.min.css" %}/> + <link rel="stylesheet" type="text/css" href="{% static "DataTables/datatables.min.css" %}/> -{# <link rel="stylesheet" type="text/css"#} -{# href="https://cdn.datatables.net/v/dt/dt-1.10.20/af-2.3.4/b-1.6.1/b-print-1.6.1/cr-1.5.2/r-2.2.3/datatables.min.css"/>#} <link href="{% static 'css/project.css' %}" rel="stylesheet"> {% endblock %} <style> @@ -129,11 +127,7 @@ <!-- place project specific Javascript in this file --> <script src="{% static 'js/project.js' %}"></script> - <script src="{% static 'js/dataTables.bootstrap4.js' %}"></script> - <script src="{% static "js/jquery.dataTables.js" %}"></script> - {# <script type="text/javascript"#} - {# src="https://cdn.datatables.net/v/dt/dt-1.10.20/af-2.3.4/b-1.6.1/b-print-1.6.1/cr-1.5.2/r-2.2.3/datatables.min.js"></script>#} - + <script src="{% static 'DataTables/datatables.min.js' %}"></script> {% endblock javascript %} </body> |