Files
murano-dashboard/muranodashboard/templates/packages/detail.html
zhurong 6ffaec95bd Add details page for packages
Package should add details link for user can see the
more information of the package.

Implements: blueprint add-fqpn-field
Change-Id: Iabcddfeffab67c82fa0f6715a98fc6dc6dfddf94
Closes-bug: #1501108
2016-02-16 21:42:40 -05:00

21 lines
378 B
HTML

{% extends 'base.html' %}
{% load i18n %}
{% load breadcrumb_nav %}
{% block title %}{% trans "Package Details" %}{% endblock %}
{% block page_header %}
<div class='page-header'>
{% breadcrumb_nav %}
</div>
{% endblock %}
{% block main %}
<div class="row">
<div class="col-sm-12">
{% include "packages/_detail.html" %}
</div>
</div>
{% endblock %}