mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 12:49:01 +02:00
Fix detail page breadcrumbs to show layer branch instead of "Layers"
This makes it easier to tell what branch you are looking at. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
parent
157656cec9
commit
399dddbcfe
|
@ -22,7 +22,7 @@
|
|||
|
||||
{% autoescape on %}
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="{% url layer_list url_branch %}">Layers</a> <span class="divider">→</span></li>
|
||||
<li><a href="{% url layer_list url_branch %}">{{ layerbranch.branch.name }}</a> <span class="divider">→</span></li>
|
||||
<li class="active">{{ layeritem.name }}</li>
|
||||
</ul>
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
{% autoescape on %}
|
||||
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="{% url layer_list recipe.layerbranch.branch.name %}">Layers</a> <span class="divider">→</span></li>
|
||||
<li><a href="{% url layer_list recipe.layerbranch.branch.name %}">{{ recipe.layerbranch.branch.name }}</a> <span class="divider">→</span></li>
|
||||
<li><a href="{% url layer_item recipe.layerbranch.branch.name recipe.layerbranch.layer.name %}">{{ recipe.layerbranch.layer.name }}</a> <span class="divider">→</span></li>
|
||||
<li class="active">{{ recipe.name }}</li>
|
||||
</ul>
|
||||
|
|
Loading…
Reference in New Issue
Block a user