843e499202
Since Horizon doesn't build static files using npm, we don't need to keep npm-relade configs. Also this patch removes minified JavaScript files which are not used directly by Horizon and lead to some issues with licenses during packaging. This commit prepares vitrage-dashboard to switch to use XStatic-* packages instead of vendorized scripts by removing all unnecessary files from the repo. Change-Id: I33eda3d4cbb0911143deedafb1bce4ee7101e06f Story: 2004051 Task: 27057
25 lines
848 B
HTML
25 lines
848 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Topology" %}{% endblock %}
|
|
|
|
{% block page_header %}
|
|
{% include "horizon/common/_page_header.html" with title=_("Topology") %}
|
|
<!--<hz-page-header header="Topology Vitrage" description="Topology Vitrage Desc"></hz-page-header>-->
|
|
{% endblock page_header %}
|
|
|
|
{% block main %}
|
|
|
|
<div ng-cloak ng-init='init({{ TOPOLOGY_VITRAGE_SETTINGS }})'>
|
|
<ng-include src="'{{STATIC_URL}}dashboard/project/layout/main/main.html'"></ng-include>
|
|
</div>
|
|
|
|
<script src="{{STATIC_URL}}vendor/d3/d3.js"></script>
|
|
<script src="{{STATIC_URL}}vendor/lodash/lodash.js"></script>
|
|
<script src="{{STATIC_URL}}vendor/graphlib/graphlib.core.js"></script>
|
|
<script src="{{STATIC_URL}}vendor/dagre/dagre.core.js"></script>
|
|
<script src="{{STATIC_URL}}vendor/dagre-d3/dagre-d3.core.js"></script>
|
|
|
|
{% endblock %}
|
|
|