![Michal Arbet](/assets/img/avatar_default.png)
Remove embedded js, add reference in settings, add requirement xstatic libs. Change-Id: I07685dfbde7c96c5b8da7e93af291df16c3b8bad Depends-On: https://review.opendev.org/712744 Story: #2004051
20 lines
622 B
HTML
20 lines
622 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Entity Admin Graph" %}{% endblock %}
|
|
|
|
{% block page_header %}
|
|
{% include "horizon/common/_page_header.html" with title=_("Entity Graph") %}
|
|
{% endblock page_header %}
|
|
|
|
{% block main %}
|
|
|
|
<div ng-cloak ng-init='init({{ TOPOLOGY_VITRAGE_SETTINGS }})'>
|
|
<ng-include src="'{{STATIC_URL}}dashboard/project/entities/entities.html'"></ng-include>
|
|
</div>
|
|
|
|
<!--<div ng-cloak ng-init='init({{ TOPOLOGY_VITRAGE_SETTINGS }})'>-->
|
|
<!--<ng-include src="'{{STATIC_URL}}dashboard/project/layout/system-health.html'"></ng-include>-->
|
|
<!--</div>-->
|
|
{% endblock %}
|
|
|