fix missing license headers
[osm/LW-UI.git] / descriptorhandler / template / composer.html
1 <!--
2 Copyright 2019 EveryUP srl
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 -->
16 {% extends "base.html" %}
17 {% load get %}
18 {% load staticfiles %}
19
20
21
22 {% block head_block %}
23 {{ block.super }}
24
25 <!-- TopologyComposer D3 -->
26 <link rel="stylesheet" href="/static/TopologyComposer/css/composer.css">
27 <link rel="stylesheet" href="/static/TopologyComposer/css/d3-context-menu.css">
28
29
30 {% endblock %}
31 {% block title_header_big %}
32 {{ block.super }}
33 {{ type|upper }} Composer
34 {% endblock %}
35 {% block left_sidebar %}
36 {% include 'osm/osm_project_left_sidebar.html' %}
37 {% endblock %}
38
39
40 {% block breadcrumb_body %}
41 {{ block.super }}
42 <li><a href="#"><i class="fa fa-sitemap"></i> {{ type|upper }} Composer</a></li>
43 {% endblock %}
44
45 {% block content_body %}
46 {{ block.super }}
47 {% csrf_token %}
48
49 <div class="container-fluid">
50 <div id="main" class="row">
51 <div id="leftside">
52 <div class="section">
53 <span style="font-weight: 500;">Select Element</span>
54 </div>
55 <div id="palette">
56
57
58 </div>
59
60 </div>
61 <div id="graph_editor_container" class="col">
62 <div class="btn-group left-tool-bar-monitoring">
63 <button id="topology_force" type="button" class="btn btn btn-default" onclick="handleForce(this)"
64 data-toggle="button" aria-pressed="false" autocomplete="off"><i
65 class="fas fa-thumbtack"></i></button>
66 <button id="reset_filter" type="button" data-container="body" data-toggle="tooltip" data-placement="top" title="Text view" class="btn btn btn-default" onclick="openTextedit(this)"><i
67 class="fa fa-edit"></i></button>
68 <button id="info_button" type="button" data-container="body" data-toggle="tooltip" data-placement="top" title="Help" class="btn btn btn-default "onclick="openHelp(this)" ><i class="fa fa-info"></i></button>
69 </div>
70 <div id="legenda">
71 </div>
72 </div>
73 <div id="side">
74 <form id="side_form" method="post" enctype="multipart/form-data" action="">
75 {% csrf_token %}
76 </form>
77 </div>
78 </div>
79 </div>
80
81 {% include 'modal/modal_keyboard_info_base.html' %}
82 {% endblock %}
83
84 {% block resource_block %}
85 {{ block.super }}
86
87 <!-- d3.js -->
88 <script src="/static/node_modules/d3/build/d3.js"></script>
89 <script src="/static/node_modules/moment/moment.js"></script>
90
91 <!-- TopologyComposer D3 -->
92 <script src="/static/TopologyComposer/js/event.js"></script>
93 <script src="/static/TopologyComposer/js/settings.js"></script>
94 <script src="/static/TopologyComposer/js/graph_editor.js"></script>
95 <script src="/static/TopologyComposer/js/model_graph_editor.js"></script>
96 <script src="/static/TopologyComposer/js/d3-context-menu.js"></script>
97
98 <script src="/static/src/osm_gui_properties.js"></script>
99 <script src="/static/src/descriptorhandler/controller.js"></script>
100 <script src="/static/src/descriptorhandler/composer.js"></script>
101
102 {% endblock %}
103
104 {% block footer %}
105 {% include "footer.html" %}
106 {% endblock %}