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
21 lines
378 B
HTML
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 %}
|
|
|