summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/js-unit-tests.html
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-08 23:44:29 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-08 23:54:14 +0100
commit1e9ac4c5cc486f03d49a8dd04fe83d4000b8fc12 (patch)
tree0568d9c4776f1c50e2982ecd770429aadaec50bc /bitbake/lib/toaster/toastergui/templates/js-unit-tests.html
parentc1df471feacaf2590216aa476ce242908dac38cf (diff)
downloadpoky-1e9ac4c5cc486f03d49a8dd04fe83d4000b8fc12.tar.gz
bitbake: toastergui: Add missing files from 1c2f6b9b7b9e700146944b9d6d2114e0d014ee81
(Bitbake rev: cf2b6b621cb483aa1a1a66c09fc431efc207c91e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/js-unit-tests.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/js-unit-tests.html39
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