diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-03-09 16:48:07 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-03-09 16:48:07 +0000 |
commit | 0f2c9fc6fddb7a1e435ab7d1ca8962383a7cc731 (patch) | |
tree | 66f7ca0a1044c2eecc78e191faf3e77e193d4b84 /ctrack/templates/base.html | |
parent | a6afdd43f465099a8b77d72102bf44851b6960e1 (diff) |
added CDN install of DataTables
Diffstat (limited to 'ctrack/templates/base.html')
-rw-r--r-- | ctrack/templates/base.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ctrack/templates/base.html b/ctrack/templates/base.html index 7ed25a7..903fac8 100644 --- a/ctrack/templates/base.html +++ b/ctrack/templates/base.html @@ -26,7 +26,8 @@ <!-- This file stores project-specific CSS --> <link href="{% static 'css/project.css' %}" rel="stylesheet"> - +{# <link rel="stylesheet" type="text/css" href="css/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/cr-1.5.2/r-2.2.3/datatables.min.css"/> {% endblock %} @@ -106,6 +107,8 @@ <!-- place project specific Javascript in this file --> <script src="{% static 'js/project.js' %}"></script> +{# <script src="{% static 'js/DataTables/datatables.min.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/cr-1.5.2/r-2.2.3/datatables.min.js"></script> {% endblock javascript %} |