diff options
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/project.html')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/project.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/project.html b/bitbake/lib/toaster/toastergui/templates/project.html index 11603d1e12..fa41e3c909 100644 --- a/bitbake/lib/toaster/toastergui/templates/project.html +++ b/bitbake/lib/toaster/toastergui/templates/project.html | |||
@@ -1,4 +1,4 @@ | |||
1 | {% extends "baseprojectpage.html" %} | 1 | {% extends project_specific|yesno:"baseprojectspecificpage.html,baseprojectpage.html" %} |
2 | 2 | ||
3 | {% load projecttags %} | 3 | {% load projecttags %} |
4 | {% load humanize %} | 4 | {% load humanize %} |
@@ -18,7 +18,7 @@ | |||
18 | try { | 18 | try { |
19 | projectPageInit(ctx); | 19 | projectPageInit(ctx); |
20 | } catch (e) { | 20 | } catch (e) { |
21 | document.write("Sorry, An error has occurred loading this page"); | 21 | document.write("Sorry, An error has occurred loading this page (project):"+e); |
22 | console.warn(e); | 22 | console.warn(e); |
23 | } | 23 | } |
24 | }); | 24 | }); |
@@ -93,6 +93,7 @@ | |||
93 | </form> | 93 | </form> |
94 | </div> | 94 | </div> |
95 | 95 | ||
96 | {% if not project_specific %} | ||
96 | <div class="well well-transparent"> | 97 | <div class="well well-transparent"> |
97 | <h3>Most built recipes</h3> | 98 | <h3>Most built recipes</h3> |
98 | 99 | ||
@@ -105,6 +106,7 @@ | |||
105 | </ul> | 106 | </ul> |
106 | <button class="btn btn-primary" id="freq-build-btn" disabled="disabled">Build selected recipes</button> | 107 | <button class="btn btn-primary" id="freq-build-btn" disabled="disabled">Build selected recipes</button> |
107 | </div> | 108 | </div> |
109 | {% endif %} | ||
108 | 110 | ||
109 | <div class="well well-transparent"> | 111 | <div class="well well-transparent"> |
110 | <h3>Project release</h3> | 112 | <h3>Project release</h3> |
@@ -157,5 +159,6 @@ | |||
157 | <ul class="list-unstyled lead" id="layers-in-project-list"> | 159 | <ul class="list-unstyled lead" id="layers-in-project-list"> |
158 | </ul> | 160 | </ul> |
159 | </div> | 161 | </div> |
162 | |||
160 | </div> | 163 | </div> |
161 | {% endblock %} | 164 | {% endblock %} |