Horizon changed the breadcrumb by this patch: https://review.openstack.org/#/c/284421/ So it needs to change the detail pages of protection providers and trigger. Change-Id: I0bbdb8088a1d0c1fdc38678c948fe292f247eeda Closes-Bug:#1591702
22 lines
462 B
HTML
22 lines
462 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Protection Provider Details" %}{% endblock %}
|
|
|
|
{% block page_header %}
|
|
{% include 'horizon/common/_detail_header.html' %}
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
{% include "protectionproviders/_detail.html" %}
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
{{ tab_group.render }}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|