summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/js-unit-tests.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/js-unit-tests.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/js-unit-tests.html16
1 files changed, 12 insertions, 4 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/js-unit-tests.html b/bitbake/lib/toaster/toastergui/templates/js-unit-tests.html
index 5b8fd84470..8d65f33cb1 100644
--- a/bitbake/lib/toaster/toastergui/templates/js-unit-tests.html
+++ b/bitbake/lib/toaster/toastergui/templates/js-unit-tests.html
@@ -22,9 +22,11 @@
22<script src="{% static 'js/table.js' %}"></script> 22<script src="{% static 'js/table.js' %}"></script>
23 23
24<script> 24<script>
25 var tableUrl = '{% url 'projectlayers' project.pk %}'; 25 var ctx = {
26 tableUrl : '{% url 'projectlayers' project.pk %}',
27 projectId : {{project.pk}},
28 }
26</script> 29</script>
27
28<script src="{% static 'js/tests/test.js' %}"></script> 30<script src="{% static 'js/tests/test.js' %}"></script>
29 31
30<div id="qunit"></div> 32<div id="qunit"></div>
@@ -34,6 +36,12 @@
34<input type="text" id="projects" placeholder="projects"></input> 36<input type="text" id="projects" placeholder="projects"></input>
35<input type="text" id="machines" placeholder="machines"></input> 37<input type="text" id="machines" placeholder="machines"></input>
36 38
37{% endblock %} 39<!-- import layer dependency input typeahead -->
38 40<input type="text" id="layer-dependency" style="display:none"></input>
41<!-- project page input typeaheads -->
42<input type="text" id="layer-add-input" style="display:none"></input>
43<input type="text" id="machine-change-input" style="display:none"></input>
44<!-- import layer dependency input typeahead on layer details edit layer -->
45<input type="text" id="layer-dep-input" style="display:none"></input>
39 46
47{% endblock %}