summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/importlayer.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/importlayer.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/importlayer.html12
1 files changed, 5 insertions, 7 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/importlayer.html b/bitbake/lib/toaster/toastergui/templates/importlayer.html
index d6984bcc9f..bec5f1aa74 100644
--- a/bitbake/lib/toaster/toastergui/templates/importlayer.html
+++ b/bitbake/lib/toaster/toastergui/templates/importlayer.html
@@ -1,10 +1,11 @@
1{% extends "baseprojectpage.html" %} 1{% extends "base.html" %}
2{% load projecttags %} 2{% load projecttags %}
3{% load humanize %} 3{% load humanize %}
4{% load static %} 4{% load static %}
5{% block pagecontent %}
5 6
7{% include "projecttopbar.html" %}
6 8
7{% block projectinfomain %}
8 9
9 {% if project and project.release %} 10 {% if project and project.release %}
10 <script src="{% static 'js/layerDepsModal.js' %}"></script> 11 <script src="{% static 'js/layerDepsModal.js' %}"></script>
@@ -24,12 +25,10 @@
24 }); 25 });
25 </script> 26 </script>
26 27
27 <h2>Import layer</h2> 28 <form class="span11">
28
29 <form>
30 <span class="help-block">The layer you are importing must be compatible with <strong>{{project.release.description}}</strong>, which is the release you are using in this project.</span>
31 <fieldset class="air"> 29 <fieldset class="air">
32 <legend>Layer repository information</legend> 30 <legend>Layer repository information</legend>
31 <span class="help-block">The layer you are importing must be compatible with <strong>{{project.release.description}}</strong>, which is the release you are using in this project.</span>
33 <div class="alert alert-error" id="import-error" style="display:none"> 32 <div class="alert alert-error" id="import-error" style="display:none">
34 <button type="button" class="close" data-dismiss="alert">&times;</button> 33 <button type="button" class="close" data-dismiss="alert">&times;</button>
35 <h3>&nbsp;</h3> 34 <h3>&nbsp;</h3>
@@ -136,5 +135,4 @@
136 </div> 135 </div>
137 136
138 {% endif %} 137 {% endif %}
139
140{% endblock %} 138{% endblock %}