diff options
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/js-unit-tests.html')
| -rw-r--r-- | bitbake/lib/toaster/toastergui/templates/js-unit-tests.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/js-unit-tests.html b/bitbake/lib/toaster/toastergui/templates/js-unit-tests.html new file mode 100644 index 0000000000..5b8fd84470 --- /dev/null +++ b/bitbake/lib/toaster/toastergui/templates/js-unit-tests.html | |||
| @@ -0,0 +1,39 @@ | |||
| 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 | |||
