Files
solum-dashboard/solumdashboard/templates/applications/detail.html
zhurong bc42bc4522 Change the detail page header
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
2017-02-04 17:50:53 +08:00

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