finish env template
This commit is contained in:
59
SuperScriptViewer/templates/help/env.html
Normal file
59
SuperScriptViewer/templates/help/env.html
Normal file
@ -0,0 +1,59 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Help - Environment data query</title>
|
||||
<link rel="stylesheet" href="{{tabcontrol_css}}">
|
||||
<link rel="stylesheet" href="{{env_css}}">
|
||||
<script src="https://cdn.jsdelivr.net/npm/jquery@3.5.0/dist/jquery.min.js"></script>
|
||||
<script src="{{tabcontrol_js}}"></script>
|
||||
<script src="{{env_js}}"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Environment data query</h1>
|
||||
<p>This page can query environment data.</p>
|
||||
<br />
|
||||
|
||||
|
||||
<div style="display: flex; flex-flow: row; height: 30px; width: 100%; margin: 0; padding: 0; border-bottom: 1px solid black;">
|
||||
{% for item in database_data %}
|
||||
<div id="tabnavigation_1_{{ loop.index }}" class="tabnavigation_1 tabitem-deactivated" style="height: 100%; padding-left: 20px; padding-right: 20px;" onclick="tabControlSwitcher(1, {{ loop.index }});"><b>{{ item.name }}</b></div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
{% for item in database_data %}
|
||||
<div id="tabpanel_1_{{ loop.index }}" class="tabpanel_1" style="display: none;">
|
||||
<p>Query field:</p>
|
||||
<table id="queryTable_{{ loop.index }}" border="1" cellspacing="0" cellpadding="5" style="margin: 10px;">
|
||||
<tr>
|
||||
<td><b>Use this</b></td>
|
||||
<td><b>Field name</b></td>
|
||||
<td style="width: 150px;"><b>Value</b></td>
|
||||
<td><b>Example</b></td>
|
||||
<td><b>Description</b></td>
|
||||
</tr>
|
||||
|
||||
{% for innerItem in item.data %}
|
||||
<tr>
|
||||
<td><input type="checkbox" value="1"></input></td>
|
||||
<td>{{ innerItem[0]|e }}</td>
|
||||
<td><input type="text"></input></td>
|
||||
<td>{{ innerItem[1]|e }}</td>
|
||||
<td>{{ innerItem[2]|e }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
|
||||
<button style="padding: 5px;" onclick="doQuery({{ loop.index }}, "{{ item.queryKey }}");">Query</button>
|
||||
<p>Query result:</p>
|
||||
|
||||
<table class="envOutput" cellspacing="0" cellpadding="5" style="margin: 10px;">
|
||||
</table>
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
Reference in New Issue
Block a user