diff options
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/baseprojectpage.html | 6 | ||||
-rwxr-xr-x | bitbake/lib/toaster/toastergui/views.py | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/baseprojectpage.html b/bitbake/lib/toaster/toastergui/templates/baseprojectpage.html index e1409252eb..0807f4cb1d 100644 --- a/bitbake/lib/toaster/toastergui/templates/baseprojectpage.html +++ b/bitbake/lib/toaster/toastergui/templates/baseprojectpage.html | |||
@@ -11,10 +11,16 @@ | |||
11 | <li><a href="{% url 'all-builds' %}">All builds</a></li> | 11 | <li><a href="{% url 'all-builds' %}">All builds</a></li> |
12 | {% block parentbreadcrumb %} | 12 | {% block parentbreadcrumb %} |
13 | {% if project %} | 13 | {% if project %} |
14 | {% if project_html %} | ||
15 | <li> | ||
16 | {{project.name}} | ||
17 | </li> | ||
18 | {% else %} | ||
14 | <li> | 19 | <li> |
15 | <a href="{%url 'project' project.id %}"><span id="project_name">{{project.name}}</span> | 20 | <a href="{%url 'project' project.id %}"><span id="project_name">{{project.name}}</span> |
16 | </a> | 21 | </a> |
17 | </li> | 22 | </li> |
23 | {% endif %} | ||
18 | {% endif %} | 24 | {% endif %} |
19 | {% endblock %} | 25 | {% endblock %} |
20 | {% block localbreadcrumb %}{% endblock %} | 26 | {% block localbreadcrumb %}{% endblock %} |
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py index e87c9f2890..661023e523 100755 --- a/bitbake/lib/toaster/toastergui/views.py +++ b/bitbake/lib/toaster/toastergui/views.py | |||
@@ -2142,6 +2142,7 @@ if toastermain.settings.MANAGED: | |||
2142 | "targets" : map(lambda x: {"target" : x.target, "task" : x.task, "pk": x.pk}, prj.projecttarget_set.all()), | 2142 | "targets" : map(lambda x: {"target" : x.target, "task" : x.task, "pk": x.pk}, prj.projecttarget_set.all()), |
2143 | "freqtargets": freqtargets, | 2143 | "freqtargets": freqtargets, |
2144 | "releases": map(lambda x: {"id": x.pk, "name": x.name, "description":x.description}, Release.objects.all()), | 2144 | "releases": map(lambda x: {"id": x.pk, "name": x.name, "description":x.description}, Release.objects.all()), |
2145 | "project_html": 1, | ||
2145 | } | 2146 | } |
2146 | try: | 2147 | try: |
2147 | context["machine"] = {"name": prj.projectvariable_set.get(name="MACHINE").value} | 2148 | context["machine"] = {"name": prj.projectvariable_set.get(name="MACHINE").value} |