Files
solum-dashboard/solumdashboard/templates/languagepacks/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
418 B
HTML

{% extends 'base.html' %}
{% load i18n %}
{% block title %}{% trans "Languagepack Details" %}{% endblock %}
{% block page_header %}
{% include "horizon/common/_detail_header.html" with title=_("Languagepack Details") %}
{% endblock page_header %}
{% block main %}
<div class="row">
<div class="col-sm-12">
{% include "languagepacks/_detail.html" %}
</div>
</div>
{% endblock %}