diff options
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/layerdetails.html')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/layerdetails.html | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/layerdetails.html b/bitbake/lib/toaster/toastergui/templates/layerdetails.html index 7d81b14b61..6269b3630f 100644 --- a/bitbake/lib/toaster/toastergui/templates/layerdetails.html +++ b/bitbake/lib/toaster/toastergui/templates/layerdetails.html | |||
@@ -1,14 +1,25 @@ | |||
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 localbreadcrumb %} | 5 | |
6 | <li><a href="{% url 'projectlayers' project.id %}">All compatible layers</a></li> | 6 | {% block pagecontent %} |
7 | <li> | 7 | |
8 | {{layerversion.layer.name}} ({{layerversion.get_vcs_reference|truncatechars:13}}) | 8 | <div class="section"> |
9 | </li> | 9 | <ul class="breadcrumb"> |
10 | {% endblock %} | 10 | <li> |
11 | {% block projectinfomain %} | 11 | <a href="{% url 'project' project.id %}">{{project.name}}</a> |
12 | <span class="divider">→</span> | ||
13 | </li> | ||
14 | <li><a href="{% url 'projectlayers' project.id %}">Compatible layers</a> | ||
15 | <span class="divider">→</span> | ||
16 | </li> | ||
17 | <li> | ||
18 | {{layerversion.layer.name}} ({{layerversion.get_vcs_reference|truncatechars:13}}) | ||
19 | </li> | ||
20 | </ul> | ||
21 | </div> | ||
22 | |||
12 | {# If this is not an imported layer then hide the edit ui #} | 23 | {# If this is not an imported layer then hide the edit ui #} |
13 | {% if not layerversion.layer_source_id or layerversion.layer_source.sourcetype != layerversion.layer_source.TYPE_IMPORTED %} | 24 | {% if not layerversion.layer_source_id or layerversion.layer_source.sourcetype != layerversion.layer_source.TYPE_IMPORTED %} |
14 | <style scoped> | 25 | <style scoped> |