Change the detail page header from _page_header.html to _detail_header.html Link for bp: https://blueprints.launchpad.net/solum/+spec/actions-in-detail-page Change-Id: Ie39962e7e8774548b9514e3059359d90e8627d08 Implements: blueprint actions-in-detail-page
16 lines
394 B
HTML
16 lines
394 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Application Details" %}{% endblock %}
|
|
|
|
{% block page_header %}
|
|
{% include "horizon/common/_detail_header.html" with title=_("Application Details") %}
|
|
{% endblock page_header %}
|
|
|
|
{% block main %}
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
{{ tab_group.render }}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|