d181623f22
Remove embedded js, add reference in settings, add requirement xstatic libs. Change-Id: I07685dfbde7c96c5b8da7e93af291df16c3b8bad Depends-On: https://review.opendev.org/712744 Story: #2004051
17 lines
441 B
HTML
17 lines
441 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Templates List" %}{% endblock %}
|
|
|
|
{% block page_header %}
|
|
{% include "horizon/common/_page_header.html" with title=_("Templates List") %}
|
|
{% endblock page_header %}
|
|
|
|
{% block main %}
|
|
|
|
<div ng-cloak ng-init='init({{ TOPOLOGY_VITRAGE_SETTINGS }})'>
|
|
<ng-include src="'{{STATIC_URL}}dashboard/project/templateList/templateList.html'"></ng-include>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|