b2e61cb9c5
This patch moves all murano-dashboard JS scripts to ADD_JS_FILES setting and gets rid of murano_base.html template which sole purpose is including these scripts. This can fix the render issue in Components tab. Change-Id: If14e3bd4ea9764857deb7a2997d3d2d0f4daba7c Closes-Bug: #1654809 Co-Authored-By: Timur Sufiev <tsufiev@mirantis.com>
26 lines
545 B
HTML
26 lines
545 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n sizeformat %}
|
|
{% load static %}
|
|
{% load compress %}
|
|
|
|
{% block title %}{% trans "Component Details" %}{% endblock %}
|
|
|
|
{% block css %}
|
|
{{ block.super }}
|
|
{% compress css %}
|
|
<link rel="stylesheet" href="{% static 'muranodashboard/css/reports.css' %}">
|
|
{% endcompress %}
|
|
{% endblock %}
|
|
|
|
{% block page_header %}
|
|
{% include "common/_detail_header.html" %}
|
|
{% endblock page_header %}
|
|
|
|
{% block main %}
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
{{ tab_group.render }}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|