d181623f22
Remove embedded js, add reference in settings, add requirement xstatic libs. Change-Id: I07685dfbde7c96c5b8da7e93af291df16c3b8bad Depends-On: https://review.opendev.org/712744 Story: #2004051
19 lines
524 B
HTML
19 lines
524 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>
|
|
|
|
{% endblock %}
|
|
|