Files
karbor-dashboard/smaug_dashboard/templates/protectionproviders/detail.html
chenpengzi 8ac49de9e6 make breadcrumb consistent with horizon
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
2016-06-12 17:16:00 +08:00

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 %}