Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame^] | 1 | {% extends "base.html" %} |
| 2 | {% load projecttags %} |
| 3 | {% load humanize %} |
| 4 | {% load static %} |
| 5 | {% block pagecontent %} |
| 6 | |
| 7 | <link rel="stylesheet" href="//code.jquery.com/qunit/qunit-1.18.0.css" /> |
| 8 | |
| 9 | <script src="//code.jquery.com/qunit/qunit-1.18.0.js"></script> |
| 10 | |
| 11 | <script src="{% static 'js/layerDepsModal.js' %}"></script> |
| 12 | <script src="{% static 'js/projectpage.js' %}"></script> |
| 13 | |
| 14 | <script src="{% static 'js/bootstrap.min.js' %}"></script> |
| 15 | <script src="{% static 'js/filtersnippet.js' %}"></script> |
| 16 | <script src="{% static 'js/importlayer.js' %}"></script> |
| 17 | <script src="{% static 'js/prettify.js' %}"></script> |
| 18 | <script src="{% static 'js/layerBtn.js' %}"></script> |
| 19 | <script src="{% static 'js/layerDepsModal.js' %}"></script> |
| 20 | <script src="{% static 'js/projectpage.js' %}"></script> |
| 21 | <script src="{% static 'js/layerdetails.js' %}"></script> |
| 22 | <script src="{% static 'js/table.js' %}"></script> |
| 23 | |
| 24 | <script> |
| 25 | var tableUrl = '{% url 'projectlayers' project.pk %}'; |
| 26 | </script> |
| 27 | |
| 28 | <script src="{% static 'js/tests/test.js' %}"></script> |
| 29 | |
| 30 | <div id="qunit"></div> |
| 31 | |
| 32 | <input type="text" id="layers" placeholder="layers" ></input> |
| 33 | <input type="text" id="recipes" placeholder="recipes"></input> |
| 34 | <input type="text" id="projects" placeholder="projects"></input> |
| 35 | <input type="text" id="machines" placeholder="machines"></input> |
| 36 | |
| 37 | {% endblock %} |
| 38 | |
| 39 | |