14ab8153f3
Specifically, make Newton+ versions of murano-dashboard compatible with Horizon from Mitaka release. Change-Id: I70a3bcefeb9c708460c8da9c658aea3f14e000e7
18 lines
335 B
HTML
18 lines
335 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Package Details" %}{% endblock %}
|
|
|
|
{% block page_header %}
|
|
{% include "common/_detail_header.html" %}
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
{% include "packages/_detail.html" %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|