Manually fixed breadcrumbs for ironic-ui

Horizon automated breadcrumbs not working for the structure of the
ironic-ui plugin. Have manually added the breadcrumbs using the manual
layout as used for ngcontainers page.

See https://review.openstack.org/#/c/284421/ for the original
breadcrumbs code and manual fix for ngcontainers as used for fixing
ironic-ui breadcrumbs.

Change-Id: Ic61bcf6281c73ea7c674f8449af61eaea7783ed5
This commit is contained in:
Elizabeth Elwell 2016-05-13 15:16:55 +01:00
parent 167f1be15c
commit e4eecc6b25
2 changed files with 17 additions and 0 deletions

View File

@ -2,6 +2,14 @@
{% load i18n %}
{% block title %}{% trans "Ironic Bare Metal Provisioning" %}{% endblock %}
{% block breadcrumb_nav %}
<ol class="breadcrumb">
<li>{% trans "Admin" %}</li>
<li>{% trans "System" %}</li>
<li class="active">{% trans "Ironic Bare Metal Provisioning" %}</li>
</ol>
{% endblock %}
{% block page_header %}
<hz-page-header header="{% trans "Ironic Bare Metal Provisioning" %}"></hz-page-header>
{% endblock %}

View File

@ -2,6 +2,15 @@
{% load i18n %}
{% block title %}{% trans "Node Details" %}{% endblock %}
{% block breadcrumb_nav %}
<ol class="breadcrumb">
<li>{% trans "Admin" %}</li>
<li>{% trans "System" %}</li>
<li>{% trans "Ironic Bare Metal Provisioning" %}</li>
<li class="active">{% trans "Node Details" %}</li>
</ol>
{% endblock %}
{% block page_header %}
<hz-page-header header="{% trans "Node Details" %}"></hz-page-header>
{% endblock %}